POST api/textitems/select
Returns the text items that match the provided criteria.
Request Information
URI Parameters
None.
Body Parameters
The criteria model to filter 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": [
"6f8ad6fa-6d38-4c91-97e5-8214f64e13a8",
"259cd18a-01c9-4f3d-a67a-e01adb3f50f5"
],
"FolderId": "fdf3403c-2fb7-49fc-b55b-a8431cd92407",
"GroupId": "2b31dd6c-5ddc-4125-88f0-eaf395e59fab",
"UserId": "bbbd3d2b-4b88-46fb-a918-2d0e1b5c235d",
"TenantId": "def249e2-8c8f-4ff2-a25e-e216a9eb9222",
"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>fdf3403c-2fb7-49fc-b55b-a8431cd92407</FolderId>
<GroupId>2b31dd6c-5ddc-4125-88f0-eaf395e59fab</GroupId>
<Ids xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>6f8ad6fa-6d38-4c91-97e5-8214f64e13a8</d2p1:guid>
<d2p1:guid>259cd18a-01c9-4f3d-a67a-e01adb3f50f5</d2p1:guid>
</Ids>
<IsArchived>true</IsArchived>
<IsDeleted>true</IsDeleted>
<TenantId>def249e2-8c8f-4ff2-a25e-e216a9eb9222</TenantId>
<UserId>bbbd3d2b-4b88-46fb-a918-2d0e1b5c235d</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.