Public API for Customers, Partners, and Integrations
Onboarded Public API (0.0.1)
- Mock serverhttps://docs.onboarded.com/_mock/openapi/api/v1/tasks
- Onboarded Production Serverhttps://app.onboarded.com/api/v1/tasks
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.onboarded.com/_mock/openapi/api/v1/tasks?page=string&per_page=string&form_id=tlin_abc123def456&employee_id=ee_abc123def456&employer_id=er_abc123def456&client_id=cl_abc123def456&job_id=job_abc123def456&status=requires_action&expired_at_lte=string&expired_at_gte=string&due_at_lte=string&due_at_gte=string&completed_at_lte=string&completed_at_gte=string&created_at_lte=string&created_at_gte=string' \
-b __session=YOUR_API_KEY_HERESuccess
Employer Identifier
a string to be decoded into a DateTime.Utc
a string to be decoded into a DateTime.Utc
a string to be decoded into a DateTime.Utc
a string to be decoded into a DateTime.Utc
This field is set when the task status changes to completed.
a string to be decoded into a DateTime.Utc
{ "data": [ { … } ], "total": 0, "current_page": 0, "per_page": 0, "total_pages": 0 }
Employer Identifier
Placement Identifier
a string to be decoded into a DateTime.Utc
a string to be decoded into a DateTime.Utc
a string to be decoded into a DateTime.Utc
- Mock serverhttps://docs.onboarded.com/_mock/openapi/api/v1/tasks
- Onboarded Production Serverhttps://app.onboarded.com/api/v1/tasks
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://docs.onboarded.com/_mock/openapi/api/v1/tasks?allow_duplicate=true' \
-H 'Content-Type: application/json' \
-b __session=YOUR_API_KEY_HERE \
-d '{
"form_id": "tlin_abc123def456",
"employee_id": "ee_abc123def456",
"employer_id": "er_abc123def456",
"client_id": "cl_abc123def456",
"job_id": "job_abc123def456",
"placement_id": "pla_abc123def456",
"expired_at": "string",
"due_at": "string",
"deletion_scheduled_at": "string",
"deletion_allowed_at": "string"
}'Task
a string to be decoded into a DateTime.Utc
a string to be decoded into a DateTime.Utc
a string to be decoded into a DateTime.Utc
a string to be decoded into a DateTime.Utc
This field is set when the task status changes to completed.
a string to be decoded into a DateTime.Utc
{ "id": "task_abc123def456", "form_id": "tlin_abc123def456", "form_custom_attributes": { "property1": null, "property2": null }, "name": "string", "employee_id": "ee_abc123def456", "employer_id": "er_abc123def456", "client_id": "cl_abc123def456", "job_id": "job_abc123def456", "status": "requires_action", "next_action": { "type": "employer_action" }, "expired_at": "string", "deletion_scheduled_at": "string", "deletion_allowed_at": "string", "due_at": "string", "completed_at": "string", "progress": { "percent": 0, "numerator": 0, "denominator": 0 }, "subtasks": [ { … } ], "tags": [ { … } ], "created_at": "string", "updated_at": "string", "_tag": "Task" }
- Mock serverhttps://docs.onboarded.com/_mock/openapi/api/v1/tasks/{task_id}
- Onboarded Production Serverhttps://app.onboarded.com/api/v1/tasks/{task_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/tasks/{task_id}' \
-b __session=YOUR_API_KEY_HERETask
a string to be decoded into a DateTime.Utc
a string to be decoded into a DateTime.Utc
a string to be decoded into a DateTime.Utc
a string to be decoded into a DateTime.Utc
This field is set when the task status changes to completed.
a string to be decoded into a DateTime.Utc
{ "id": "task_abc123def456", "form_id": "tlin_abc123def456", "form_custom_attributes": { "property1": null, "property2": null }, "name": "string", "employee_id": "ee_abc123def456", "employer_id": "er_abc123def456", "client_id": "cl_abc123def456", "job_id": "job_abc123def456", "status": "requires_action", "next_action": { "type": "employer_action" }, "expired_at": "string", "deletion_scheduled_at": "string", "deletion_allowed_at": "string", "due_at": "string", "completed_at": "string", "progress": { "percent": 0, "numerator": 0, "denominator": 0 }, "subtasks": [ { … } ], "tags": [ { … } ], "created_at": "string", "updated_at": "string", "_tag": "Task" }
a string to be decoded into a DateTime.Utc
a string to be decoded into a DateTime.Utc
- Mock serverhttps://docs.onboarded.com/_mock/openapi/api/v1/tasks/{task_id}
- Onboarded Production Serverhttps://app.onboarded.com/api/v1/tasks/{task_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/tasks/{task_id}' \
-H 'Content-Type: application/json' \
-b __session=YOUR_API_KEY_HERE \
-d '{
"expired_at": "string",
"deletion_scheduled_at": "string",
"deletion_allowed_at": "string"
}'Task
a string to be decoded into a DateTime.Utc
a string to be decoded into a DateTime.Utc
a string to be decoded into a DateTime.Utc
a string to be decoded into a DateTime.Utc
This field is set when the task status changes to completed.
a string to be decoded into a DateTime.Utc
{ "id": "task_abc123def456", "form_id": "tlin_abc123def456", "form_custom_attributes": { "property1": null, "property2": null }, "name": "string", "employee_id": "ee_abc123def456", "employer_id": "er_abc123def456", "client_id": "cl_abc123def456", "job_id": "job_abc123def456", "status": "requires_action", "next_action": { "type": "employer_action" }, "expired_at": "string", "deletion_scheduled_at": "string", "deletion_allowed_at": "string", "due_at": "string", "completed_at": "string", "progress": { "percent": 0, "numerator": 0, "denominator": 0 }, "subtasks": [ { … } ], "tags": [ { … } ], "created_at": "string", "updated_at": "string", "_tag": "Task" }
- Mock serverhttps://docs.onboarded.com/_mock/openapi/api/v1/tasks/{task_id}
- Onboarded Production Serverhttps://app.onboarded.com/api/v1/tasks/{task_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/tasks/{task_id}' \
-b __session=YOUR_API_KEY_HERETask
a string to be decoded into a DateTime.Utc
a string to be decoded into a DateTime.Utc
a string to be decoded into a DateTime.Utc
a string to be decoded into a DateTime.Utc
This field is set when the task status changes to completed.
a string to be decoded into a DateTime.Utc
{ "id": "task_abc123def456", "form_id": "tlin_abc123def456", "form_custom_attributes": { "property1": null, "property2": null }, "name": "string", "employee_id": "ee_abc123def456", "employer_id": "er_abc123def456", "client_id": "cl_abc123def456", "job_id": "job_abc123def456", "status": "requires_action", "next_action": { "type": "employer_action" }, "expired_at": "string", "deletion_scheduled_at": "string", "deletion_allowed_at": "string", "due_at": "string", "completed_at": "string", "progress": { "percent": 0, "numerator": 0, "denominator": 0 }, "subtasks": [ { … } ], "tags": [ { … } ], "created_at": "string", "updated_at": "string", "_tag": "Task" }
- Mock serverhttps://docs.onboarded.com/_mock/openapi/api/v1/tasks/{task_id}/fields
- Onboarded Production Serverhttps://app.onboarded.com/api/v1/tasks/{task_id}/fields
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.onboarded.com/_mock/openapi/api/v1/tasks/{task_id}/fields?include_sensitive_info=true' \
-b __session=YOUR_API_KEY_HERE- Mock serverhttps://docs.onboarded.com/_mock/openapi/api/v1/tasks/{task_id}/fields
- Onboarded Production Serverhttps://app.onboarded.com/api/v1/tasks/{task_id}/fields
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PATCH \
'https://docs.onboarded.com/_mock/openapi/api/v1/tasks/{task_id}/fields' \
-H 'Content-Type: application/json' \
-b __session=YOUR_API_KEY_HERE \
-d '{
"fields": [
{
"path": "string",
"value": null
}
]
}'- Mock serverhttps://docs.onboarded.com/_mock/openapi/api/v1/tasks/{task_id}/pdf
- Onboarded Production Serverhttps://app.onboarded.com/api/v1/tasks/{task_id}/pdf
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.onboarded.com/_mock/openapi/api/v1/tasks/{task_id}/pdf' \
-b __session=YOUR_API_KEY_HERE- Mock serverhttps://docs.onboarded.com/_mock/openapi/api/v1/tasks/{task_id}/onboarding
- Onboarded Production Serverhttps://app.onboarded.com/api/v1/tasks/{task_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/tasks/{task_id}/onboarding?assignee_type=employee&locale=string&redirect_to=string' \
-b __session=YOUR_API_KEY_HERE