POST api/textitems/selectlatest/{folderId}

Returns the text items within a folder that match the provided criteria.

Request Information

URI Parameters

NameDescriptionTypeAdditional 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
NameDescriptionTypeAdditional 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": [
    "d2bb60fb-52cc-420e-86f8-09d00b375c52",
    "bd19e3f2-4371-4a36-8643-6dcb2825c639"
  ],
  "FolderId": "e52d2ab0-424d-4bdc-8fb9-a53976855ff3",
  "GroupId": "ff96c85b-eaa8-4b32-a331-568ec1a5dea2",
  "UserId": "a23cc27f-1b4b-470e-b6d4-1aacd34f909c",
  "TenantId": "5f9f3491-5c79-46a5-9bce-02b31cc6b777",
  "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>e52d2ab0-424d-4bdc-8fb9-a53976855ff3</FolderId>
  <GroupId>ff96c85b-eaa8-4b32-a331-568ec1a5dea2</GroupId>
  <Ids xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:guid>d2bb60fb-52cc-420e-86f8-09d00b375c52</d2p1:guid>
    <d2p1:guid>bd19e3f2-4371-4a36-8643-6dcb2825c639</d2p1:guid>
  </Ids>
  <IsArchived>true</IsArchived>
  <IsDeleted>true</IsDeleted>
  <TenantId>5f9f3491-5c79-46a5-9bce-02b31cc6b777</TenantId>
  <UserId>a23cc27f-1b4b-470e-b6d4-1aacd34f909c</UserId>
</TextItemsFilterCriteriaDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.