Directories API

Remove a custom claims administrator

Remove a saved destination from future choices.

DELETEhttps://app.mindbill.org/partner/v2/organization/claims-administrators/{id}

Retire an organization's custom contact while preserving existing bill snapshots.

AuthenticationServer API key or browser session + Origin
Permissions by credentialServer: orgs:write · Browser: organization:manage
IdempotencyNot required

Use this URL with a server API key or a browser session and its exact allowed Origin. Both credentials use the same request and response contract. See the component API inventory for exact paths and SDK methods.

Path parameters

FieldTypeDescription
idRequired
string

Identifier returned by this organization's list endpoint.

Examples

Request
curl 'https://app.mindbill.org/partner/v2/organization/claims-administrators/custom_example' \
  --request DELETE \
  --header "Authorization: Bearer $MINDBILL_API_KEY"

Response

200 OK

Response
{
  "data": {
    "id": "custom_example",
    "deleted": true
  }
}
FieldTypeDescription
data.idRequired
string

Removed contact identifier.

data.deletedRequired
boolean

True after the contact is deactivated.