Public API for Customers, Partners, and Integrations
API Reference
/- Get a custom property by ID
List all custom properties
Create a custom property
Delete a custom property
Deprecate a custom property
Get a custom property by...
Onboarded Public API (0.0.1)
Download OpenAPI description
Languages
Servers
Mock server
https://docs.onboarded.com/_mock/openapi
Onboarded Production Server
https://app.onboarded.com
- Mock serverhttps://docs.onboarded.com/_mock/openapi/api/v1/custom_properties
- Onboarded Production Serverhttps://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?page=string&per_page=string&name=string&entity_type=employee&path=string&status=active' \
-b __session=YOUR_API_KEY_HEREResponse
application/json
{ "data": [ { … } ], "total": 0, "current_page": 0, "per_page": 0, "total_pages": 0 }
- Mock serverhttps://docs.onboarded.com/_mock/openapi/api/v1/custom_properties
- Onboarded Production Serverhttps://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 'Content-Type: application/json' \
-b __session=YOUR_API_KEY_HERE \
-d '{
"name": "string",
"label": "string",
"entity_type": "employee",
"scalar_type": "string"
}'Response
application/json
{ "id": "cprop_abc123def456", "name": "string", "label": "string", "entity_type": "employee", "scalar_type": "string", "path": "string", "is_sensitive_info": true, "is_permission_scope": true, "created_at": "string", "updated_at": "string" }
- Mock serverhttps://docs.onboarded.com/_mock/openapi/api/v1/custom_properties/{custom_property_id}
- Onboarded Production Serverhttps://app.onboarded.com/api/v1/custom_properties/{custom_property_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/{custom_property_id}' \
-b __session=YOUR_API_KEY_HEREResponse
application/json
{ "id": "cprop_abc123def456", "name": "string", "label": "string", "entity_type": "employee", "scalar_type": "string", "path": "string", "is_sensitive_info": true, "is_permission_scope": true, "created_at": "string", "updated_at": "string" }
- Mock serverhttps://docs.onboarded.com/_mock/openapi/api/v1/custom_properties/{custom_property_id}
- Onboarded Production Serverhttps://app.onboarded.com/api/v1/custom_properties/{custom_property_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/{custom_property_id}' \
-b __session=YOUR_API_KEY_HEREResponse
application/json
{ "id": "cprop_abc123def456", "name": "string", "label": "string", "entity_type": "employee", "scalar_type": "string", "path": "string", "is_sensitive_info": true, "is_permission_scope": true, "created_at": "string", "updated_at": "string" }
- Mock serverhttps://docs.onboarded.com/_mock/openapi/api/v1/custom_properties/{custom_property_id}/deprecate
- Onboarded Production Serverhttps://app.onboarded.com/api/v1/custom_properties/{custom_property_id}/deprecate
- 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/{custom_property_id}/deprecate' \
-b __session=YOUR_API_KEY_HEREResponse
application/json
{ "id": "cprop_abc123def456", "name": "string", "label": "string", "entity_type": "employee", "scalar_type": "string", "path": "string", "is_sensitive_info": true, "is_permission_scope": true, "created_at": "string", "updated_at": "string" }