Get issue based on id

GET /cs-close-api/issues/{id}

Get the issue details for the provided issue identifier.

Path parameters

  • id integer Required

    Identifier for the issue.

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • id integer
    • name string
    • actionPlanId integer
    • periodId integer
    • periodName string
    • year string
    • subject string
    • taskName string
    • taskId integer
    • priority string
    • status object
      Hide status attributes Show status attributes object
      • id string
      • name string
    • inboxReceiver object
      Hide inboxReceiver attributes Show inboxReceiver attributes object
      • name string
      • type string
      • email string
      • queueId string
      • userName string
    • logSid integer
    • taskReference string
    • late boolean
GET /cs-close-api/issues/{id}
curl \
 --request GET 'https://customer.trintech.com/cs-close-api/issues/{id}'
Response examples (200)
{
  "id": 158,
  "late": true,
  "name": null,
  "year": "2020",
  "logSid": 802,
  "status": {
    "id": "IN_PROGRESS",
    "name": "In progress"
  },
  "taskId": null,
  "subject": "15453 Close Issue AP",
  "periodId": 70,
  "priority": "Medium",
  "taskName": null,
  "periodName": "Jun",
  "actionPlanId": null,
  "inboxReceiver": {
    "name": "Dan Longley",
    "type": "U",
    "email": "dalongley@DanDaMan.com",
    "queueId": null
  },
  "taskReference": "USR05272020091821426497"
}