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": [
"14b41ef8-5194-41d7-b6d7-b88d3cd043b1",
"7782935a-e956-4540-b2dd-61efd05f867d"
],
"FolderId": "50a248cf-07e4-4849-b517-0bb1c6798b30",
"GroupId": "ea974e15-93aa-4260-a236-779daaac21ab",
"UserId": "9de0f506-3d00-41f8-a2e1-2b7e69cde43c",
"TenantId": "3325487f-f2f3-4cae-8d1c-ea59c17c7059",
"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>50a248cf-07e4-4849-b517-0bb1c6798b30</FolderId>
<GroupId>ea974e15-93aa-4260-a236-779daaac21ab</GroupId>
<Ids xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>14b41ef8-5194-41d7-b6d7-b88d3cd043b1</d2p1:guid>
<d2p1:guid>7782935a-e956-4540-b2dd-61efd05f867d</d2p1:guid>
</Ids>
<IsArchived>true</IsArchived>
<IsDeleted>true</IsDeleted>
<TenantId>3325487f-f2f3-4cae-8d1c-ea59c17c7059</TenantId>
<UserId>9de0f506-3d00-41f8-a2e1-2b7e69cde43c</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.