PUT api/datalists/{id}
Updates a DataList entity.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The id of the data list to update. |
globally unique identifier |
Required |
Body Parameters
The data list model to update with.
DataListDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Name | string |
Required String length: inclusive between 0 and 80 |
|
| CreationDate | date |
Required |
|
| CreatorUserId | globally unique identifier |
None. |
|
| DataRetentionPeriod | integer |
None. |
|
| AvailableStatusesIds | Collection of globally unique identifier |
None. |
|
| FlushOnUse | boolean |
None. |
|
| FolderId | globally unique identifier |
None. |
|
| SchemaId | globally unique identifier |
None. |
|
| ViewPermissionGroupId | globally unique identifier |
None. |
|
| EditPermissionGroupId | globally unique identifier |
None. |
|
| DeletePermissionGroupId | globally unique identifier |
None. |
|
| CanEdit | boolean |
None. |
|
| CanDelete | boolean |
None. |
|
| Recipients | Collection of RecipientDto |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "e2ed3a89-66e2-494b-b9e2-5a29b6a352df",
"Name": "sample string 2",
"CreationDate": "2026-01-09T14:31:24.4792087+00:00",
"CreatorUserId": "1aef2238-0e1d-4e18-9233-e6379c71696f",
"DataRetentionPeriod": 5,
"AvailableStatusesIds": [
"0a9d9efd-76a5-46c1-afbc-7d258acf6ae1",
"04727394-d678-4906-afc3-fa5f5859390c"
],
"FlushOnUse": true,
"FolderId": "d209a445-f2f7-461b-83e5-57e6c05e762b",
"SchemaId": "5e7c5395-7a33-4205-b3d3-4a230fc5f774",
"ViewPermissionGroupId": "d13a60ab-3660-4535-9fa1-d449b7c9c1c8",
"EditPermissionGroupId": "52031213-7050-47d0-bb85-5764a7d5af0d",
"DeletePermissionGroupId": "e613bffa-a504-438b-9531-f82cb9b9d24f",
"CanEdit": true,
"CanDelete": true,
"Recipients": [
{
"Id": "b130fdb4-7bca-417a-866c-e33829bb7b5a",
"TenantId": "c3a195ce-a896-4639-81e7-cfc4f56ed93e",
"ExternalId": "sample string 3",
"CreationDate": "2026-01-09T14:31:24.4792087+00:00"
},
{
"Id": "b130fdb4-7bca-417a-866c-e33829bb7b5a",
"TenantId": "c3a195ce-a896-4639-81e7-cfc4f56ed93e",
"ExternalId": "sample string 3",
"CreationDate": "2026-01-09T14:31:24.4792087+00:00"
}
]
}
application/xml, text/xml
Sample:
<DataListDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.DataManagement.Models">
<AvailableStatusesIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>0a9d9efd-76a5-46c1-afbc-7d258acf6ae1</d2p1:guid>
<d2p1:guid>04727394-d678-4906-afc3-fa5f5859390c</d2p1:guid>
</AvailableStatusesIds>
<CanDelete>true</CanDelete>
<CanEdit>true</CanEdit>
<CreationDate>2026-01-09T14:31:24.4792087+00:00</CreationDate>
<CreatorUserId>1aef2238-0e1d-4e18-9233-e6379c71696f</CreatorUserId>
<DataRetentionPeriod>5</DataRetentionPeriod>
<DeletePermissionGroupId>e613bffa-a504-438b-9531-f82cb9b9d24f</DeletePermissionGroupId>
<EditPermissionGroupId>52031213-7050-47d0-bb85-5764a7d5af0d</EditPermissionGroupId>
<FlushOnUse>true</FlushOnUse>
<FolderId>d209a445-f2f7-461b-83e5-57e6c05e762b</FolderId>
<Id>e2ed3a89-66e2-494b-b9e2-5a29b6a352df</Id>
<Name>sample string 2</Name>
<Recipients>
<RecipientDto>
<CreationDate>2026-01-09T14:31:24.4792087+00:00</CreationDate>
<ExternalId>sample string 3</ExternalId>
<Id>b130fdb4-7bca-417a-866c-e33829bb7b5a</Id>
<TenantId>c3a195ce-a896-4639-81e7-cfc4f56ed93e</TenantId>
</RecipientDto>
<RecipientDto>
<CreationDate>2026-01-09T14:31:24.4792087+00:00</CreationDate>
<ExternalId>sample string 3</ExternalId>
<Id>b130fdb4-7bca-417a-866c-e33829bb7b5a</Id>
<TenantId>c3a195ce-a896-4639-81e7-cfc4f56ed93e</TenantId>
</RecipientDto>
</Recipients>
<SchemaId>5e7c5395-7a33-4205-b3d3-4a230fc5f774</SchemaId>
<ViewPermissionGroupId>d13a60ab-3660-4535-9fa1-d449b7c9c1c8</ViewPermissionGroupId>
</DataListDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.