v1

latestOpenAPI 3.1.02026-07-242735131.1 MB
Employee Documents

Indexes all the documents for the employee

Scopes

CategoryRead only ScopeWrite only Scope (read access implicit)
Manage employment documents (employment_documents)View documents (document:read)Manage documents (document:write)
get/v1/employee/documents

Query parameters

pageinteger

Starts fetching records after the given page

page_sizeinteger

Number of items per page

namestring

Filter documents by their description or file name, accepts full and partial case insensitive matches

inserted_afterstring date

UTC date in ISO 8601 format

Example:2021-07-01

Filters the results that were uploaded on or after a given date

inserted_beforestring date

UTC date in ISO 8601 format

Example:2021-07-01

Filters the results that were uploaded before a given date

sort_by'description' | 'document_source' | 'inserted_at' | 'name' | 'type' | 'uploaded_by_role' | 'related_to' | 'sub_type' | 'uploaded_by'

Field to sort by

order'asc' | 'desc'

Sort order

Response

Success

Example response

{
  "current_page": 1,
  "documents": [
    {
      "id": "9880b711-file-id-ecf8f551bd78",
      "inserted_at": "2021-07-15T18:18:17Z",
      "name": "id.pdf",
      "sub_type": "personal_id",
      "type": "id"
    }
  ],
  "total_count": 1,
  "total_pages": 1
}