Create profile

POST /closeAPI/api/close/profile
application/json

Body Required

Responses

POST /closeAPI/api/close/profile
curl \
 --request POST 'http://close-service:8082/closeAPI/api/close/profile' \
 --header "Content-Type: application/json" \
 --data '{"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}]}'
Request examples
{
  "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
    }
  ]
}
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
    }
  ]
}