https://docs.onboarded.com/_mock/openapi/
https://app.onboarded.com/
https://docs.onboarded.com/_mock/openapi/api/v1/custom_properties
https://app.onboarded.com/api/v1/custom_properties
curl -i -X GET \
'https://docs.onboarded.com/_mock/openapi/api/v1/custom_properties?entity_type=employee&name=string&path=string' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
https://docs.onboarded.com/_mock/openapi/api/v1/custom_properties
https://app.onboarded.com/api/v1/custom_properties
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",
"scalar_type": "string"
}'
{ "id": "string", "name": "string", "entity_type": "employee", "scalar_type": "string", "path": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }
https://docs.onboarded.com/_mock/openapi/api/v1/custom_properties/{id}
https://app.onboarded.com/api/v1/custom_properties/{id}
curl -i -X GET \
'https://docs.onboarded.com/_mock/openapi/api/v1/custom_properties/{id}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "id": "string", "name": "string", "entity_type": "employee", "scalar_type": "string", "path": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }
https://docs.onboarded.com/_mock/openapi/api/v1/custom_properties/{id}
https://app.onboarded.com/api/v1/custom_properties/{id}
curl -i -X DELETE \
'https://docs.onboarded.com/_mock/openapi/api/v1/custom_properties/{id}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "id": "string", "name": "string", "entity_type": "employee", "scalar_type": "string", "path": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }