Directories API
List custom claims administrators
Read active claims-administrator contacts saved for this organization.
GET
https://app.mindbill.org/partner/v2/organization/claims-administratorsPopulate custom destination settings.
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
curl 'https://app.mindbill.org/partner/v2/organization/claims-administrators' \
--request GET \
--header "Authorization: Bearer $MINDBILL_API_KEY"Response
200 OK
{
"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
dataRequiredCustomClaimsAdministrator[]Active contacts: id, name, fax, email, mailingAddress, submissionMethod, notes, active, and createdAt. Contact fields may be null.