Public API for Customers, Partners, and Integrations
Onboarded Public API (0.0.1)
- Mock serverhttps://docs.onboarded.com/_mock/openapi/api/v1/clients
- Onboarded Production Serverhttps://app.onboarded.com/api/v1/clients
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.onboarded.com/_mock/openapi/api/v1/clients?page=string&per_page=string&custom_attributes=string' \
-b __session=YOUR_API_KEY_HERE{ "data": [ { … } ], "total": 0, "current_page": 0, "per_page": 0, "total_pages": 0 }
- Mock serverhttps://docs.onboarded.com/_mock/openapi/api/v1/clients
- Onboarded Production Serverhttps://app.onboarded.com/api/v1/clients
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.onboarded.com/_mock/openapi/api/v1/clients \
-H 'Content-Type: application/json' \
-b __session=YOUR_API_KEY_HERE \
-d '{
"name": "string",
"custom_attributes": {
"property1": null,
"property2": null
},
"property1": null,
"property2": null
}'A client with standard fields plus any system-defined custom attributes as top-level properties. System attributes are organization-specific fields (ScalarValue: string, number, boolean, or null) that extend the base client schema.
Record of custom attribute values keyed by string path.
{ "id": "cl_abc123def456", "name": "string", "custom_attributes": { "property1": null, "property2": null }, "created_at": "string", "updated_at": "string", "property1": null, "property2": null }
- Mock serverhttps://docs.onboarded.com/_mock/openapi/api/v1/clients/{client_id}
- Onboarded Production Serverhttps://app.onboarded.com/api/v1/clients/{client_id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.onboarded.com/_mock/openapi/api/v1/clients/{client_id}' \
-b __session=YOUR_API_KEY_HEREA client with standard fields plus any system-defined custom attributes as top-level properties. System attributes are organization-specific fields (ScalarValue: string, number, boolean, or null) that extend the base client schema.
Record of custom attribute values keyed by string path.
{ "id": "cl_abc123def456", "name": "string", "custom_attributes": { "property1": null, "property2": null }, "created_at": "string", "updated_at": "string", "property1": null, "property2": null }
- Mock serverhttps://docs.onboarded.com/_mock/openapi/api/v1/clients/{client_id}
- Onboarded Production Serverhttps://app.onboarded.com/api/v1/clients/{client_id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PATCH \
'https://docs.onboarded.com/_mock/openapi/api/v1/clients/{client_id}' \
-H 'Content-Type: application/json' \
-b __session=YOUR_API_KEY_HERE \
-d '{
"name": "string",
"custom_attributes": {
"property1": null,
"property2": null
},
"property1": null,
"property2": null
}'A client with standard fields plus any system-defined custom attributes as top-level properties. System attributes are organization-specific fields (ScalarValue: string, number, boolean, or null) that extend the base client schema.
Record of custom attribute values keyed by string path.
{ "id": "cl_abc123def456", "name": "string", "custom_attributes": { "property1": null, "property2": null }, "created_at": "string", "updated_at": "string", "property1": null, "property2": null }
- Mock serverhttps://docs.onboarded.com/_mock/openapi/api/v1/clients/{client_id}
- Onboarded Production Serverhttps://app.onboarded.com/api/v1/clients/{client_id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://docs.onboarded.com/_mock/openapi/api/v1/clients/{client_id}' \
-b __session=YOUR_API_KEY_HEREA client with standard fields plus any system-defined custom attributes as top-level properties. System attributes are organization-specific fields (ScalarValue: string, number, boolean, or null) that extend the base client schema.
Record of custom attribute values keyed by string path.
{ "id": "cl_abc123def456", "name": "string", "custom_attributes": { "property1": null, "property2": null }, "created_at": "string", "updated_at": "string", "property1": null, "property2": null }