Public API for Customers, Partners, and Integrations
- Get onboarding URL for an employee
Onboarded Public API (0.0.1)
- Mock serverhttps://docs.onboarded.com/_mock/openapi/api/v1/employees
- Onboarded Production Serverhttps://app.onboarded.com/api/v1/employees
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.onboarded.com/_mock/openapi/api/v1/employees?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/employees
- Onboarded Production Serverhttps://app.onboarded.com/api/v1/employees
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.onboarded.com/_mock/openapi/api/v1/employees \
-H 'Content-Type: application/json' \
-b __session=YOUR_API_KEY_HERE \
-d '{
"first_name": "string",
"middle_name": "string",
"last_name": "string",
"email": "string",
"phone": "string",
"date_of_birth": "string",
"social_security_number": "string",
"has_middle_name": true,
"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
}'An employee 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 employee schema.
Record of custom attribute values keyed by string path.
{ "id": "ee_abc123def456", "first_name": "string", "middle_name": "string", "last_name": "string", "email": "string", "phone": "string", "date_of_birth": "string", "social_security_number": "string", "has_middle_name": true, "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/employees/{employee_id}
- Onboarded Production Serverhttps://app.onboarded.com/api/v1/employees/{employee_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/employees/{employee_id}' \
-b __session=YOUR_API_KEY_HEREAn employee 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 employee schema.
Record of custom attribute values keyed by string path.
{ "id": "ee_abc123def456", "first_name": "string", "middle_name": "string", "last_name": "string", "email": "string", "phone": "string", "date_of_birth": "string", "social_security_number": "string", "has_middle_name": true, "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/employees/{employee_id}
- Onboarded Production Serverhttps://app.onboarded.com/api/v1/employees/{employee_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/employees/{employee_id}' \
-H 'Content-Type: application/json' \
-b __session=YOUR_API_KEY_HERE \
-d '{
"first_name": "string",
"middle_name": "string",
"last_name": "string",
"email": "string",
"phone": "string",
"date_of_birth": "string",
"social_security_number": "string",
"has_middle_name": true,
"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
}'An employee 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 employee schema.
Record of custom attribute values keyed by string path.
{ "id": "ee_abc123def456", "first_name": "string", "middle_name": "string", "last_name": "string", "email": "string", "phone": "string", "date_of_birth": "string", "social_security_number": "string", "has_middle_name": true, "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/employees/{employee_id}
- Onboarded Production Serverhttps://app.onboarded.com/api/v1/employees/{employee_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/employees/{employee_id}' \
-b __session=YOUR_API_KEY_HEREAn employee 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 employee schema.
Record of custom attribute values keyed by string path.
{ "id": "ee_abc123def456", "first_name": "string", "middle_name": "string", "last_name": "string", "email": "string", "phone": "string", "date_of_birth": "string", "social_security_number": "string", "has_middle_name": true, "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/employees/{employee_id}/onboarding
- Onboarded Production Serverhttps://app.onboarded.com/api/v1/employees/{employee_id}/onboarding
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.onboarded.com/_mock/openapi/api/v1/employees/{employee_id}/onboarding?assignee_type=employee&task_ids=string&locale=string&redirect_to=string&active_theme_id=string' \
-b __session=YOUR_API_KEY_HERE- Mock serverhttps://docs.onboarded.com/_mock/openapi/api/v1/employees/{employee_id}/migrate_completed_tasks_progress
- Onboarded Production Serverhttps://app.onboarded.com/api/v1/employees/{employee_id}/migrate_completed_tasks_progress
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PATCH \
'https://docs.onboarded.com/_mock/openapi/api/v1/employees/{employee_id}/migrate_completed_tasks_progress' \
-H 'Content-Type: application/json' \
-b __session=YOUR_API_KEY_HERE \
-d '{
"target_employee_id": "ee_abc123def456"
}'