POST api/textitems/selectlatest

Returns the latest version of text items that match the provided criteria.

Request Information

URI Parameters

None.

Body Parameters

The criteria model to filter the latest 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": [
    "5057b227-a4b9-4203-a96e-64b3846adcec",
    "2d3396db-63fd-4cd4-b1d9-7e6e672cfd49"
  ],
  "FolderId": "042f81f3-6e3d-44a2-8868-968c54b5ebfe",
  "GroupId": "75e0a713-dd4f-48f3-999a-a23d6978d9c4",
  "UserId": "bdb677b0-54a6-415f-88b0-a1fef8c0fcce",
  "TenantId": "047e70da-9b2d-4e37-af5c-616d288720fb",
  "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>042f81f3-6e3d-44a2-8868-968c54b5ebfe</FolderId>
  <GroupId>75e0a713-dd4f-48f3-999a-a23d6978d9c4</GroupId>
  <Ids xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:guid>5057b227-a4b9-4203-a96e-64b3846adcec</d2p1:guid>
    <d2p1:guid>2d3396db-63fd-4cd4-b1d9-7e6e672cfd49</d2p1:guid>
  </Ids>
  <IsArchived>true</IsArchived>
  <IsDeleted>true</IsDeleted>
  <TenantId>047e70da-9b2d-4e37-af5c-616d288720fb</TenantId>
  <UserId>bdb677b0-54a6-415f-88b0-a1fef8c0fcce</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.