Public API for Customers, Partners, and Integrations
Onboarded Public API (0.0.1)
- Mock serverhttps://docs.onboarded.com/_mock/openapi/api/v1/jobs
- Onboarded Production Serverhttps://app.onboarded.com/api/v1/jobs
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.onboarded.com/_mock/openapi/api/v1/jobs?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/jobs
- Onboarded Production Serverhttps://app.onboarded.com/api/v1/jobs
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.onboarded.com/_mock/openapi/api/v1/jobs \
-H 'Content-Type: application/json' \
-b __session=YOUR_API_KEY_HERE \
-d '{
"name": "string",
"address": {
"street": "123 Main St",
"secondary": "Suite 100",
"city": "San Francisco",
"state": "CA",
"zip": "94102",
"country": "US",
"full_address": "123 Main St, San Francisco, CA 94102"
},
"custom_attributes": {
"property1": null,
"property2": null
},
"property1": null,
"property2": null
}'A job 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 job schema.
Record of custom attribute values keyed by string path.
{ "id": "job_abc123def456", "name": "string", "address": { "street": "123 Main St", "secondary": "Suite 100", "city": "San Francisco", "state": "CA", "zip": "94102", "country": "US", "full_address": "123 Main St, San Francisco, CA 94102" }, "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/jobs/{job_id}
- Onboarded Production Serverhttps://app.onboarded.com/api/v1/jobs/{job_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/jobs/{job_id}' \
-b __session=YOUR_API_KEY_HEREA job 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 job schema.
Record of custom attribute values keyed by string path.
{ "id": "job_abc123def456", "name": "string", "address": { "street": "123 Main St", "secondary": "Suite 100", "city": "San Francisco", "state": "CA", "zip": "94102", "country": "US", "full_address": "123 Main St, San Francisco, CA 94102" }, "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/jobs/{job_id}
- Onboarded Production Serverhttps://app.onboarded.com/api/v1/jobs/{job_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/jobs/{job_id}' \
-H 'Content-Type: application/json' \
-b __session=YOUR_API_KEY_HERE \
-d '{
"name": "string",
"address": {
"street": "123 Main St",
"secondary": "Suite 100",
"city": "San Francisco",
"state": "CA",
"zip": "94102",
"country": "US",
"full_address": "123 Main St, San Francisco, CA 94102"
},
"custom_attributes": {
"property1": null,
"property2": null
},
"property1": null,
"property2": null
}'A job 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 job schema.
Record of custom attribute values keyed by string path.
{ "id": "job_abc123def456", "name": "string", "address": { "street": "123 Main St", "secondary": "Suite 100", "city": "San Francisco", "state": "CA", "zip": "94102", "country": "US", "full_address": "123 Main St, San Francisco, CA 94102" }, "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/jobs/{job_id}
- Onboarded Production Serverhttps://app.onboarded.com/api/v1/jobs/{job_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/jobs/{job_id}' \
-b __session=YOUR_API_KEY_HEREA job 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 job schema.
Record of custom attribute values keyed by string path.
{ "id": "job_abc123def456", "name": "string", "address": { "street": "123 Main St", "secondary": "Suite 100", "city": "San Francisco", "state": "CA", "zip": "94102", "country": "US", "full_address": "123 Main St, San Francisco, CA 94102" }, "custom_attributes": { "property1": null, "property2": null }, "created_at": "string", "updated_at": "string", "property1": null, "property2": null }