Update priority group

Replace the skill groups assigned to a priority group and set their order.

When to use. Define which skill groups belong to a priority group and the order in which they are prioritized. Send the priority group id in the path and the full set of assignments in the request body. The assignments you send replace the current ones.

Parameters. id (integer, required, path): the priority group to update.

Request body. A JSON array of assignment items. Each item requires skill_group_id, the skill group to assign, and order, its position within the priority group. Every order value in the request must be unique.

Returns. { "skillGroups": [ ... ] }, the skill groups assigned to the priority group after the update, each with its skill_group_id, name, and order. Returns 404 if the priority group does not exist, a required field is missing, or two items share the same order.

Example.

[
  { "skill_group_id": 3, "order": 0 },
  { "skill_group_id": 7, "order": 1 }
]
Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…
Path Params
integer
required

Priority group ID.

Body Params
Responses

Language
Credentials
:
URL
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json