v1
latestOpenAPI 3.1.02026-07-242735131.1 MBEmployee Documents
Indexes all the documents for the employee
Scopes
| Category | Read only Scope | Write 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
Filters the results that were uploaded on or after a given date
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
}