POST api/Document/SearchProfessional

Searches for professional documents based on the provided search request.

Request Information

URI Parameters

None.

Body Parameters

The professional search request containing the search parameters.

ProfessionalSearchRequest
Name Description Type Additional information
ArchiveGuid

string

None.

RowCount

integer

None.

Columns

Collection of string

None.

ProfessionalQuery

string

None.

SortQuery

string

None.

HideLockedDocuments

boolean

None.

Token

Token

None.

Request Formats

application/json, text/json

Sample:
{
  "ArchiveGuid": "sample string 1",
  "RowCount": 2,
  "Columns": [
    "sample string 1",
    "sample string 2"
  ],
  "ProfessionalQuery": "sample string 3",
  "SortQuery": "sample string 4",
  "HideLockedDocuments": true,
  "Token": {
    "OrgId": 1,
    "OrgGuid": "sample string 2",
    "UserId": 3,
    "UserGuid": "sample string 4",
    "Username": "sample string 5",
    "UserNumber": "sample string 6",
    "EMail": "sample string 7",
    "CreatedAt": "2026-09-15T11:36:05.7182326+02:00",
    "ValidTo": "2026-09-15T11:36:05.7182326+02:00",
    "Realm": "sample string 10",
    "IsDelegated": true,
    "AccessKey": "sample string 12"
  }
}

application/bson

Sample:
Binary JSON content. See http://bsonspec.org for details.

Response Information

Resource Description

An representing the result of the search operation. Returns a 200 OK response with the search results if successful, a 400 Bad Request if authentication fails or if the access key is invalid, or a 400 Bad Request with an error message if an exception occurs during the search.

IHttpActionResult

None.

Response Formats

application/json, text/json

Sample:

Sample not available.

application/bson

Sample:
Binary JSON content. See http://bsonspec.org for details.