Assigning Resources to Tickets

Required Variables

  • ticket_id - The ID of the ticket you are assigning the member to

  • member_id - The ID of the member you are assignign to the ticket

Action

POST

URL Path

{ base URL including version identifier }/schedule/entries

Payload

{{
    {
    "objectId": CTX.ticket_id|int,
    "member": {
        "id": CTX.member_id|int
        },
    "type": {
        "id": 4
        }
    }
}}

Last updated