/
Assign staff to a project
Assign staff to a project
Creates associations between staff members and a job:
staffJobAssignments: assigns staff directly to the job viastaff_jobrecordsstaffTaskAssignments: assigns staff to specific task types on the job viatask_type_staff_jobrecords
If an association already exists but is inactive, it will be re-activated.
Returns the IDs of created or re-activated records.
Real Example:
curl --location 'https://{{host}}/api/v1/projects/assign_staff' \
--header 'Authorization: bearer {{token}}' \
--header 'Content-Type: application/json' \
--data '{
"jobId": 5001,
"staffJobAssignments": [{"staffId": 103}, {"staffId": 104}],
"staffTaskAssignments": [{"staffId": 103, "taskTypeId": 10}, {"staffId": 104, "taskTypeId": 11}]
}'Security
BearerAuth
- Mock serverhttps://api.doc.aiwyn.ai/_mock/bundle/api/v1/projects/assign_staff
- Sandboxhttps://demo.api.aiwyn.ai/api/v1/projects/assign_staff
- Staginghttps://staging.api.aiwyn.app/api/v1/projects/assign_staff
curl -i -X POST \
https://api.doc.aiwyn.ai/_mock/bundle/api/v1/projects/assign_staff \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"jobId": 0,
"staffJobAssignments": [
{
"staffId": 0
}
],
"staffTaskAssignments": [
{
"staffId": 0,
"taskTypeId": 0
}
]
}'