Update profile
Body
Required
-
id
integer -
name
string -
number
string -
instructions
string -
hasInstructions
boolean -
hasCaptions
boolean -
count
integer(int64) -
captions
array[object]
PUT
/closeAPI/api/close/profile
curl \
--request PUT '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
}
]
}