Get profile

GET /closeAPI/api/close/profile/{id}

Path parameters

  • id integer Required

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • id integer
    • name string
    • number string
    • instructions string
    • hasInstructions boolean
    • hasCaptions boolean
    • count integer(int64)
    • 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/profile/{id}
curl \
 --request GET 'https://customer.trintech.com/closeAPI/api/close/profile/{id}'
Response examples (200)
{
  "id": 42,
  "name": "string",
  "number": "string",
  "instructions": "string",
  "hasInstructions": true,
  "hasCaptions": true,
  "count": 42,
  "captions": [
    {
      "id": 42,
      "caption": "string",
      "dataTypeId": 42,
      "excelAddress": "string",
      "order": 42,
      "readonly": true
    }
  ]
}