Creates a new role within a department to be used for shaping, planning, and reporting.
Security
ApiKey
- Mock serverhttps://developer.getparallax.com/_mock/api-documentation/swagger/v1/roles
- Production Serverhttps://api.getparallax.com/v1/roles
- application/json-patch+json
- application/json
curl -i -X POST \
https://developer.getparallax.com/_mock/api-documentation/swagger/v1/roles \
-H 'Content-Type: application/json-patch+json' \
-H 'X-API-KEY: YOUR_API_KEY_HERE' \
-d '{
"department_id": "094fb5f1-8160-46ea-8cec-010c4b44e054",
"name": "string"
}'Created
The name of the Role, typically describing the job function or skill set (e.g. Designer, Developer).
The unique identifier of the Department that this Role belongs to for capacity and reporting segmentation.
The full-time capacity for this Role, expressed as a decimal percentage (e.g. 1.0 = 100%).
The target percentage of billable utilization expected for this Role, expressed as a decimal percentage (e.g. 1.0 = 100%).
Indicates whether this Role has been archived and is no longer active for planning or reporting.
Response
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "name": "string", "department_id": "094fb5f1-8160-46ea-8cec-010c4b44e054", "capacity": 0.1, "billable_utilization_target": 0.1, "archived": true, "created_date": "2019-08-24T14:15:22Z", "modified_date": "2019-08-24T14:15:22Z" }