/
Create Project Offering R...
Creates a Project Offering Role.
Security
ApiKey
assignmentobject or null(Assignment)
Optional assignment of a Person or Requisition to this role.
- Mock serverhttps://developer.getparallax.com/_mock/api-documentation/swagger/v1/projects/{project_id}/offerings/{project_offering_id}/roles
- Production Serverhttps://api.getparallax.com/v1/projects/{project_id}/offerings/{project_offering_id}/roles
- application/json-patch+json
- application/json
curl -i -X POST \
'https://developer.getparallax.com/_mock/api-documentation/swagger/v1/projects/{project_id}/offerings/{project_offering_id}/roles' \
-H 'Content-Type: application/json-patch+json' \
-H 'X-API-KEY: YOUR_API_KEY_HERE' \
-d '{
"role_id": "ac4e70c8-d5be-48af-93eb-760f58fc91a9",
"assignment": {
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"type": "person"
},
"tags": [
"string"
]
}'Created
assignmentobject or null(Assignment)
The unique identifier for the (optional) person attached to the role.
Response
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "assignment": { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "type": "person" }, "role_id": "ac4e70c8-d5be-48af-93eb-760f58fc91a9", "tags": [ "string" ] }