GET/desk/api/v2/tickets/{ticketId}/copies.json

Get tickets that were also send to other inboxes

Path Params

  • Name
    ticketId
    Type
    integer
    required
    Description

Responses

  • Code
    200
    Type
    object
    Schema
    Description
    200 OK
  • Code
    404
    Type
    object
    Schema
    Description
    404 Not Found
    Error represents an occurrence of an error in the API.

Examples

200 OK

TicketCopyAPIBody
{
  "copies": [
    {
      "inbox": {
        "delete": true,
        "id": 0,
        "meta": {
          "additionalProp": "Unknown Type: any"
        },
        "type": 0
      },
      "ticket": {
        "delete": true,
        "id": 0,
        "meta": {
          "additionalProp": "Unknown Type: any"
        },
        "type": 0
      }
    }
  ]
}