Get profiles by task

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

Path parameters

  • id integer Required

Responses

GET /closeAPI/api/close/task/{id}/profile
curl \
 --request GET 'http://close-service:8082/closeAPI/api/close/task/{id}/profile'
Response examples (200)
[
  {
    "id": 42,
    "name": "string",
    "number": "string",
    "hasCaptions": true,
    "hasInstructions": true,
    "instructions": "string",
    "captions": [
      {
        "id": 42,
        "order": 42,
        "caption": "string",
        "dataTypeId": 42,
        "externalAddress": "string",
        "addressTypeId": 42,
        "accountColumnId": 42
      }
    ]
  }
]