Directories API

List custom claims administrators

Read active claims-administrator contacts saved for this organization.

GEThttps://app.mindbill.org/partner/v2/organization/claims-administrators

Populate custom destination settings.

AuthenticationServer API key or browser session + Origin
Permissions by credentialServer: orgs:read · 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.

Examples

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

Response

200 OK

Response
{
  "data": [
    {
      "id": "custom_example",
      "name": "Example Claims Office",
      "fax": "+15555550123",
      "email": null,
      "mailingAddress": null,
      "submissionMethod": "fax",
      "notes": null,
      "active": true,
      "createdAt": "2026-09-01T12:00:00.000Z"
    }
  ]
}
FieldTypeDescription
dataRequired
CustomClaimsAdministrator[]

Active contacts: id, name, fax, email, mailingAddress, submissionMethod, notes, active, and createdAt. Contact fields may be null.