Add a person to a workqueue/workflow
When a user needs adding to a workflow or workqueue. note for workflows, there is no return activity, e.g. if the workflow requires the user to enter a note - then this wont be triggered.
post body requires the following parameter
The unique id of the person to be added to the queue unique_id: 789
The work queue ID. This is 0 if requesting a workflow, otherwise must be > 0 queue_id: 0
The workflow ID. This is always a value workflow_id: 14
GET /workqueues/addperson
curl \
-X GET https://YOURSITE.infoodle.com/apiv2/workqueues/addperson \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"success": "ok",
"message": "Added user to work queue."
}