Get All Business Structure
GET/v1/crossborder/clients/:client_id/business-structure
Retrieve a paginated list of business structure entries associated with a specific crossborder client.
Request
Path Parameters
Client ID.
Query Parameters
Default value: 1
Page number.
Possible values: <= 100
Default value: 20
Page size. Max size is 100.
Possible values: [created_at, name, participation_percentage]
Page sort attribute.
Possible values: [asc, desc]
Default value: asc
Page order.
Filter by participation percentage.
Filter by document type.
Filter by document number.
Filter by status.
Filter by position or role.
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.
Sender Wallet UUID (if empty, your default Wallet UUID will be settled)
Responses
- 200
- 400
- 401
- 422
Business structure returned successfully.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
Page number.
Page size.
Page total.
Total of elements.
data object[]required
Business structure data.
Business structure ID.
Client ID.
Name.
Email.
Position or role.
Participation percentage.
Whether this entry is a control person.
Status.
Risk flag.
Created at.
Updated at.
address object
Address ID.
Street line 1.
Street line 2.
City.
State or region.
Subdivision.
Postal code.
Possible values: [AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW]
Country code.
Created at.
Updated at.
{
"page": 1,
"page_size": 20,
"page_total": 20,
"total": 100,
"data": [
{
"id": "f6e2e084-29b9-4935-a059-5473b13033aa",
"client_id": "f6e2e084-29b9-4935-a059-5473b13033aa",
"name": "John Doe",
"email": "john.doe@example.com",
"position": "Legal Representative",
"participation_percentage": 50,
"is_control_person": false,
"status": "ACTIVE",
"risk_flag": "LOW",
"created_at": "2026-05-29T21:41:50.166Z",
"updated_at": "2026-05-29T21:41:50.166Z",
"address": {
"id": "f6e2e084-29b9-4935-a059-5473b13033aa",
"street_line_1": "Avenida Paulista",
"street_line_2": "Apto 1001",
"city": "Sao Paulo",
"state": "SP",
"subdivision": "BR",
"postal_code": "01310100",
"country": "BR",
"created_at": "2026-05-29T21:41:50.165Z",
"updated_at": "2026-05-29T21:41:50.165Z"
}
}
]
}
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.