Get captions by task

GET /closeAPI/api/close/task/{id}/caption

Path parameters

  • id integer Required

Responses

  • 200 application/json

    OK

    Hide response attribute Show response attribute object
    • captions array[object]
      Hide captions attributes Show captions attributes object
      • id integer
      • caption string

        Minimum length is 1, maximum length is 1800.

      • dataTypeId integer
      • excelAddress string
      • order integer
      • readonly boolean
GET /closeAPI/api/close/task/{id}/caption
curl \
 --request GET 'https://customer.trintech.com/closeAPI/api/close/task/{id}/caption'
Response examples (200)
{
  "captions": [
    {
      "id": 42,
      "caption": "string",
      "dataTypeId": 42,
      "excelAddress": "string",
      "order": 42,
      "readonly": true
    }
  ]
}