Some sections represent repeatable entities such asDocumentation Index
Fetch the complete documentation index at: https://developers.circle.com/llms.txt
Use this file to discover all available pages before exploring further.
beneficial_owners,
authorized_signers, or directors. These are array sections—the schema
defines them with type: array containing items that describe each entity.
Array sections differ from flat sections in how data is read, saved, and linked
to documents.
Conditional logic can activate
or deactivate array sections based on the application’s configuration.
How array sections differ from flat sections
| Operation | Flat section | Array section |
|---|---|---|
| Read | Returns a JSON object | Returns a JSON array; each element includes a refId (UUID) |
| Save | PUT with a JSON object | PUT with a JSON array; include refId for existing entities, omit for new ones |
| Delete | Not applicable | DELETE /sections/{sectionName}/{refId} removes a single entity |
| Documents | Link with datumName only | Link with datumName and the entity’s refId |
Reading array data
Retrieve array section data withGET /v1/onboarding/partner/applications/{applicationId}/sections/{sectionName}.
The response is a JSON array where each element includes a refId:
Saving array data
When saving, includerefId for entities you want to update and omit it for new
entities:
refId) and the second
is created (no refId). Existing entities not included in the array are
preserved, not deleted.
Removing entities
Remove a single entity from an array section withDELETE /v1/onboarding/partner/applications/{applicationId}/sections/{sectionName}/{refId}.
The response includes the updated section list with recalculated statuses.
Document association
When uploading a document for a field in an array entity, include the entity’srefId so the document is associated with the correct person or organization.
See Upload documents for the full
upload workflow.