PUT api/dataitemstates/{id}
Updates a DataItemState entity.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The id of the data item state to update. |
globally unique identifier |
Required |
Body Parameters
The data item state model to update with.
DataItemStatusDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Name | string |
Required String length: inclusive between 0 and 80 |
|
| Stage | DataItemStatusStageDto |
None. |
|
| CreationDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "3517293e-4ae9-44e5-971b-4fa7c0d7c681",
"Name": "sample string 2",
"Stage": 0,
"CreationDate": "2026-01-08T10:12:48.5612865+00:00"
}
application/xml, text/xml
Sample:
<DataItemStatusDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.DataManagement.Models"> <CreationDate>2026-01-08T10:12:48.5612865+00:00</CreationDate> <Id>3517293e-4ae9-44e5-971b-4fa7c0d7c681</Id> <Name>sample string 2</Name> <Stage>New</Stage> </DataItemStatusDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.