Skip to main content
PATCH
/
v1
/
onboarding
/
partner
/
applications
/
{applicationId}
/
data
Save data for multiple sections in a single request
curl --request PATCH \
  --url https://api-sandbox.circle.com/v1/onboarding/partner/applications/{applicationId}/data \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "data": {},
  "sections": [
    {
      "sectionName": "<string>"
    }
  ],
  "sectionsChanged": true
}

Documentation Index

Fetch the complete documentation index at: https://developers.circle.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

applicationId
string<uuid>
required

Application UUID

Body

application/json

JSON object keyed by section name. Each value matches the section's JSON Schema.

Section data keyed by section name — structure varies by template. Consult GET /{applicationId}/schema.

Response

All section statuses after save

data
object

Saved section field data — structure varies by application template. For single-section saves this is the section payload directly. For bulk saves this is an object keyed by section name. Retrieve the shape via GET /{applicationId}/schema.

sections
object[]
sectionsChanged
boolean