Update profile

PUT /closeAPI/api/close/profile
application/json

Body Required

  • 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

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • id integer
    • name string
    • number string
    • hasCaptions boolean
    • hasInstructions boolean
    • instructions string
    • captions array[object]
      Hide captions attributes Show captions attributes object
      • id integer
      • order integer
      • caption string
      • dataTypeId integer
      • externalAddress string
      • addressTypeId integer
      • accountColumnId integer
PUT /closeAPI/api/close/profile
curl \
 --request PUT 'https://customer.trintech.com/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
    }
  ]
}