POST api/textitems/selectlatest/{folderId}
Returns the text items within a folder that match the provided criteria.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| folderId |
The id of the folder to restrict text items by. |
globally unique identifier |
Required |
Body Parameters
The criteria model to filter the text items by.
TextItemsFilterCriteriaDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Ids | Collection of globally unique identifier |
None. |
|
| FolderId | globally unique identifier |
None. |
|
| GroupId | globally unique identifier |
None. |
|
| UserId | globally unique identifier |
None. |
|
| TenantId | globally unique identifier |
None. |
|
| IsArchived | boolean |
None. |
|
| IsDeleted | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"Ids": [
"c00dc260-d9ca-4c3f-ba0c-781c909da06c",
"0a0b3055-743f-444a-8134-116b35e7926f"
],
"FolderId": "79ff3768-ba58-4b57-9f9f-c13337815cdf",
"GroupId": "081525b8-1509-43f8-bf50-f056bacee4b1",
"UserId": "e6719f3e-6b1f-4b58-b05d-ce048631a81b",
"TenantId": "f93a6401-adae-4a34-8542-4cebfa7b42ab",
"IsArchived": true,
"IsDeleted": true
}
application/xml, text/xml
Sample:
<TextItemsFilterCriteriaDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Content.Models.FilterCriteria">
<FolderId>79ff3768-ba58-4b57-9f9f-c13337815cdf</FolderId>
<GroupId>081525b8-1509-43f8-bf50-f056bacee4b1</GroupId>
<Ids xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>c00dc260-d9ca-4c3f-ba0c-781c909da06c</d2p1:guid>
<d2p1:guid>0a0b3055-743f-444a-8134-116b35e7926f</d2p1:guid>
</Ids>
<IsArchived>true</IsArchived>
<IsDeleted>true</IsDeleted>
<TenantId>f93a6401-adae-4a34-8542-4cebfa7b42ab</TenantId>
<UserId>e6719f3e-6b1f-4b58-b05d-ce048631a81b</UserId>
</TextItemsFilterCriteriaDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.