Directories API
Create a custom claims administrator
Save an organization-specific fax, email, or mail destination.
POST
https://app.mindbill.org/partner/v2/organization/claims-administratorsManage a destination outside the shared electronic payer directory.
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.
Request body
FieldTypeDescription
nameRequiredstringClaims administrator display name.
1–200 charactersfaxstring | nullFax destination; required unless an email or mailing address is supplied.
At most 50 charactersemailstring | nullEmail destination.
Valid email, at most 254 characters; empty or null clears itmailingAddressstring | nullMailing address as text, not a structured address object.
At most 2,000 charactersnotesstring | nullInternal contact notes.
At most 4,000 charactersExamples
curl 'https://app.mindbill.org/partner/v2/organization/claims-administrators' \
--request POST \
--header "Authorization: Bearer $MINDBILL_API_KEY" \
--header 'Content-Type: application/json' \
--data '{"name":"Example Claims Office","fax":"+15555550123"}'Response
201 Created
{
"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
dataRequiredCustomClaimsAdministratorSaved contact and server-derived submissionMethod.