List Onboardings with Steps
GET/v1/users/onboardings/with-steps
Get all onboardings for the authenticated user with their verification steps.
Request
Query Parameters
Default value: 1
Page number.
Possible values: <= 100
Default value: 20
Page size. Max size is 100.
Possible values: [created_at, updated_at]
Page sort attribute.
Possible values: [asc, desc]
Default value: asc
Page order.
Possible values: [pending, invalid, in_process, approved, rejected, finished, expired, failed, in_process_delayed]
Onboarding status.
Filter by created at start.
Filter by created at end.
Search by name, CPF or CNPJ.
Possible values: [NATURAL_PERSON, LEGAL_PERSON]
Person type filter.
Header Parameters
The nonce ID is a UUID (v4) used to uniquely identify the request. All requests must have an identifier.
UUID (v4) of the product that the request should use. Send it explicitly when the authenticated user has more than one product or when the integration must select a specific product. If omitted and the endpoint does not require it, the API uses the authenticated user's default product.
UUID (v4) of the user on whose behalf the request should run within the selected product. If omitted, the request runs as the authenticated user. Requires x-product-uuid.
Possible values: [pt-BR, en-US]
Indicates the preferred language. Defaults to Brazilian Portuguese if unspecified.
Responses
- 200
- 400
- 401
- 422
The onboardings with steps returned successfully.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- ]
- ]
Page number.
Page size.
Page total.
Total of elements.
data object[]required
Onboarding data with steps.
Onboarding ID.
User document.
User full name.
Possible values: [pending, invalid, in_process, approved, rejected, finished, expired, failed, in_process_delayed]
Onboarding Status.
User nationality.
User PEP.
User PEP initial date.
User occupation cbo code.
User occupation income in cents.
User patrimony in cents.
Onboarding failed code.
Onboarding failed message.
Rejected legal representative ID when rejection is representative-scoped.
address object
User address ID.
User address zip code.
User address street.
User address number.
User address neighborhood.
User address city.
User address federative unit.
User address country.
User address complement.
steps object[]
Onboarding steps. Company-level steps have legal_representative_id = null.
Step ID.
Possible values: [BC_PROTEGE, CAF, DICT, RUFRA]
Step name.
Possible values: [PENDING, PROCESSING, APPROVED, REJECTED, ERROR, MANUAL_REVIEW]
Step status.
Step order.
Step finished at.
Legal representative ID linked to the step. Null means company-level step.
Onboarding created at.
Onboarding updated at.
{
"page": 1,
"page_size": 20,
"page_total": 20,
"total": 100,
"data": [
{
"id": "8fc58500-b12e-49d7-892c-dfd704b94c2d",
"document": "36131399988",
"full_name": "John Doe",
"status": "finished",
"nationality": "Brasileiro",
"pep": false,
"pep_since": "2026-01-01",
"occupation_cbo_code": 212405,
"occupation_income": 0,
"patrimony": 1299,
"failed_code": "ONBOARDING_REJECTED_BY_COMPLIANCE",
"failed_message": "Rejected by compliance",
"rejected_legal_representative_id": "8fc58500-b12e-49d7-892c-dfd704b94c2d",
"address": {
"id": 1234,
"zip_code": "96075858",
"street": "Alameda",
"number": 10,
"neighborhood": "Alphaville",
"city": "São Paulo",
"federative_unit": "SP",
"country": "Brasil",
"complement": "flat 1201"
},
"steps": [
{
"id": "8fc58500-b12e-49d7-892c-dfd704b94c2d",
"name": "BC_PROTEGE",
"status": "APPROVED",
"order": 1,
"finished_at": "2026-05-29T21:41:49.588Z",
"legal_representative_id": "8fc58500-b12e-49d7-892c-dfd704b94c2d"
}
],
"created_at": "2026-05-29T21:41:49.588Z",
"updated_at": "2026-05-29T21:41:49.588Z"
}
]
}
If any required params are missing or has invalid format or type.
User authentication failed.
If any required params are missing or has invalid format or type.