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": [
"cd074c4b-8109-4902-b2a0-c906d1988c5e",
"2893e391-1f44-493e-b89b-8627497fa8ab"
],
"FolderId": "480f37db-6ae5-4c70-bac4-54fb297e1e83",
"GroupId": "3c77987c-b5ca-4d06-877b-2c622e981270",
"UserId": "a13389b7-21ce-4852-b572-3493533cdc85",
"TenantId": "962aaf1a-ec63-4222-b38f-d9ff754093b7",
"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>480f37db-6ae5-4c70-bac4-54fb297e1e83</FolderId>
<GroupId>3c77987c-b5ca-4d06-877b-2c622e981270</GroupId>
<Ids xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>cd074c4b-8109-4902-b2a0-c906d1988c5e</d2p1:guid>
<d2p1:guid>2893e391-1f44-493e-b89b-8627497fa8ab</d2p1:guid>
</Ids>
<IsArchived>true</IsArchived>
<IsDeleted>true</IsDeleted>
<TenantId>962aaf1a-ec63-4222-b38f-d9ff754093b7</TenantId>
<UserId>a13389b7-21ce-4852-b572-3493533cdc85</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.