PUT api/editortypes/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
EditorTypeDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Name | string |
Required String length: inclusive between 0 and 250 |
|
| CreationDate | date |
Required |
|
| DataType | DataTypeDto |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "45dacc47-0a54-4956-996e-865385bcefc0",
"Name": "sample string 2",
"CreationDate": "2026-01-10T01:07:21.9034834+00:00",
"DataType": 1
}
application/xml, text/xml
Sample:
<EditorTypeDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Products.Models"> <CreationDate>2026-01-10T01:07:21.9034834+00:00</CreationDate> <DataType>Bool</DataType> <Id>45dacc47-0a54-4956-996e-865385bcefc0</Id> <Name>sample string 2</Name> </EditorTypeDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.