Components APIs
Onboarded API (0.0.1)
Download OpenAPI description
Languages
Servers
Mock server
https://docs.onboarded.com/_mock/openapi/
https://app.onboarded.com/
- Mock server
https://docs.onboarded.com/_mock/openapi/api/v1/custom_properties
https://app.onboarded.com/api/v1/custom_properties
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.onboarded.com/_mock/openapi/api/v1/custom_properties?name=string&entity_type=employee&path=string' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
- Mock server
https://docs.onboarded.com/_mock/openapi/api/v1/custom_properties
https://app.onboarded.com/api/v1/custom_properties
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.onboarded.com/_mock/openapi/api/v1/custom_properties \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"entity_type": "employee",
"name": "string",
"label": "string",
"scalar_type": "string"
}'
Response
application/json
{ "id": "string", "name": "string", "label": "string", "entity_type": "employee", "scalar_type": "string", "path": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }
- Mock server
https://docs.onboarded.com/_mock/openapi/api/v1/custom_properties/{id}
https://app.onboarded.com/api/v1/custom_properties/{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/custom_properties/{id}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
Response
application/json
{ "id": "string", "name": "string", "label": "string", "entity_type": "employee", "scalar_type": "string", "path": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }
- Mock server
https://docs.onboarded.com/_mock/openapi/api/v1/custom_properties/{id}
https://app.onboarded.com/api/v1/custom_properties/{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/custom_properties/{id}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
Response
application/json
{ "id": "string", "name": "string", "label": "string", "entity_type": "employee", "scalar_type": "string", "path": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }