Skip to main content
DELETE
/
applications
/
{application_id}
/
associated-individuals
/
{individual_id}
Remove associated individual from business application
curl --request DELETE \
  --url https://api.platform.dakota.xyz/applications/{application_id}/associated-individuals/{individual_id} \
  --header 'X-Application-Token: <api-key>'
{
  "type": "https://docs.dakota.xyz/api-reference/errors#invalid-request",
  "title": "Invalid request or cannot remove last individual",
  "status": 400,
  "detail": "Invalid request or cannot remove last individual",
  "instance": "https://api.platform.dakota.xyz/applications/example-id/associated-individuals/example-id",
  "request_id": "req_01hzy6y7v8w9x0y1z2a3b4c5d6"
}

Authorizations

X-Application-Token
string
header
required

Application-specific token for public URL access. Generated when a customer is created. Provides access to a single application without requiring an API key. Token is valid for 30 days and rate-limited to 100 requests per hour.

Path Parameters

application_id
string
required

KSUID is a 27-character globally unique ID that combines a timestamp with a random component. Used for all entity identifiers in the Dakota platform.

Required string length: 27
Pattern: ^[0-9A-Za-z]{27}$
Example:

"1NFHrqBHb3cTfLVkFSGmHZqdDPi"

individual_id
string
required

KSUID is a 27-character globally unique ID that combines a timestamp with a random component. Used for all entity identifiers in the Dakota platform.

Required string length: 27
Pattern: ^[0-9A-Za-z]{27}$
Example:

"1NFHrqBHb3cTfLVkFSGmHZqdDPi"

Response

Individual removed successfully