PUT api/v1/code-list/{entity}/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| entity | string |
Required |
|
| id | globally unique identifier |
None. |
Body Parameters
CodeList| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
|
| name | string |
None. |
|
| deleted | boolean |
Required |
|
| system_information | SystemInformation |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": "0c36e81d-305c-4fe3-bbed-f2d31bfc3387",
"name": "sample string 2",
"deleted": true,
"system_information": {
"creation": {
"user": {
"id": 1,
"image_id": "49eb4c1f-7469-4c4b-907c-15ccc5e48d9e",
"code": "sample string 2",
"title": "sample string 5",
"introduction": "sample string 6",
"first_name": "sample string 7",
"last_name": "sample string 8",
"full_name": "sample string 9",
"note": "sample string 10"
},
"date": "2026-02-08T14:08:12Z"
},
"last_change": {
"user": {
"id": 1,
"image_id": "49eb4c1f-7469-4c4b-907c-15ccc5e48d9e",
"code": "sample string 2",
"title": "sample string 5",
"introduction": "sample string 6",
"first_name": "sample string 7",
"last_name": "sample string 8",
"full_name": "sample string 9",
"note": "sample string 10"
},
"date": "2026-02-08T14:08:12Z"
}
}
}
application/xml, text/xml
Sample:
<CodeList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IO.Swagger.Models">
<deleted>true</deleted>
<id>0c36e81d-305c-4fe3-bbed-f2d31bfc3387</id>
<name>sample string 2</name>
<system_information>
<creation>
<date>2026-02-08T15:08:12.4537261+01:00</date>
<user>
<code>sample string 2</code>
<first_name>sample string 7</first_name>
<full_name>sample string 9</full_name>
<id>1</id>
<image_id>49eb4c1f-7469-4c4b-907c-15ccc5e48d9e</image_id>
<introduction>sample string 6</introduction>
<last_name>sample string 8</last_name>
<note>sample string 10</note>
<title>sample string 5</title>
</user>
</creation>
<last_change>
<date>2026-02-08T15:08:12.4537261+01:00</date>
<user>
<code>sample string 2</code>
<first_name>sample string 7</first_name>
<full_name>sample string 9</full_name>
<id>1</id>
<image_id>49eb4c1f-7469-4c4b-907c-15ccc5e48d9e</image_id>
<introduction>sample string 6</introduction>
<last_name>sample string 8</last_name>
<note>sample string 10</note>
<title>sample string 5</title>
</user>
</last_change>
</system_information>
</CodeList>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Result| Name | Description | Type | Additional information |
|---|---|---|---|
| messages | Collection of ResultMessage |
None. |
|
| count_of_errors | integer |
None. |
|
| id | Object |
None. |
|
| name | string |
None. |
|
| data | Object |
None. |
|
| url | string |
None. |
|
| text | string |
None. |
|
| inner_exception | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"messages": [
{
"type": 1,
"code": 1,
"message": "sample string 1",
"field": "sample string 2"
},
{
"type": 1,
"code": 1,
"message": "sample string 1",
"field": "sample string 2"
}
],
"count_of_errors": 1,
"id": {},
"name": "sample string 3",
"data": {},
"url": "sample string 5",
"text": "sample string 6",
"inner_exception": "sample string 7"
}
application/xml, text/xml
Sample:
<Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UP.Core.Data">
<count_of_errors>1</count_of_errors>
<data />
<id />
<inner_exception>sample string 7</inner_exception>
<messages>
<ResultMessage>
<code>1</code>
<field>sample string 2</field>
<message>sample string 1</message>
<type>1</type>
</ResultMessage>
<ResultMessage>
<code>1</code>
<field>sample string 2</field>
<message>sample string 1</message>
<type>1</type>
</ResultMessage>
</messages>
<name>sample string 3</name>
<text>sample string 6</text>
<url>sample string 5</url>
</Result>