GET api/DocumentStore/GetBySearch?fieldName={fieldName}&fieldValue={fieldValue}&limit={limit}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
fieldName

string

Required

fieldValue

string

Required

limit

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of Book
NameDescriptionTypeAdditional information
UUID

string

None.

Title

string

None.

Path

string

None.

LastModified

date

None.

FullName

string

None.

Indexed

boolean

None.

Format

string

None.

Language

string

None.

Id

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "UUID": "sample string 1",
    "Title": "sample string 2",
    "Path": "sample string 3",
    "LastModified": "2024-10-06T06:50:57.2284326+02:00",
    "FullName": "sample string 5",
    "Indexed": true,
    "Format": "sample string 7",
    "Language": "sample string 8",
    "Id": "sample string 9"
  },
  {
    "UUID": "sample string 1",
    "Title": "sample string 2",
    "Path": "sample string 3",
    "LastModified": "2024-10-06T06:50:57.2284326+02:00",
    "FullName": "sample string 5",
    "Indexed": true,
    "Format": "sample string 7",
    "Language": "sample string 8",
    "Id": "sample string 9"
  }
]

application/xml, text/xml

Sample:
<ArrayOfBook xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/it.t9a.Interfaces.Model">
  <Book>
    <Id>sample string 9</Id>
    <Format>sample string 7</Format>
    <FullName>sample string 5</FullName>
    <Indexed>true</Indexed>
    <Language>sample string 8</Language>
    <LastModified>2024-10-06T06:50:57.2284326+02:00</LastModified>
    <Path>sample string 3</Path>
    <Title>sample string 2</Title>
    <UUID>sample string 1</UUID>
  </Book>
  <Book>
    <Id>sample string 9</Id>
    <Format>sample string 7</Format>
    <FullName>sample string 5</FullName>
    <Indexed>true</Indexed>
    <Language>sample string 8</Language>
    <LastModified>2024-10-06T06:50:57.2284326+02:00</LastModified>
    <Path>sample string 3</Path>
    <Title>sample string 2</Title>
    <UUID>sample string 1</UUID>
  </Book>
</ArrayOfBook>