1. Prodoctivity Api(FileManager)
Prodoctivity Api(File Manager)
  • Prodoctivity Api(FileManager)
    • Login
      POST
    • Document Delete
      DELETE
    • Document Get All
      GET
    • Document Search
      GET
    • Create/Update Document
      POST
    • Document-Type Get All
      GET
    • Document-Type Search
      GET
    • Documents Filter Search
      POST
  1. Prodoctivity Api(FileManager)

Document Get All

GET
/api/documents
Returns a list of every document the caller is allowed to see.
Devuelve todos los documentos que el usuario puede ver.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params

Responses

🟢200OK
application/json
Success
Body

🟠400Bad Request
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://localhost:44397/api/documents?DateStart=01-01-2025&PageNumber=1&RowsPerPage=15&SortField=updatedAt&SortDirection=DESC' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Success
{
    "documents": [
        {
            "documentId": "680bf35769fd21f18090a28c",
            "lastDocumentVersionId": "680bf35769fd21f18090a28d",
            "name": "00117390146 - Eliseo Antonio",
            "documentTypeId": "680bf2b469fd21f18090a28a",
            "documentTypeName": "Tipo de documento soporte",
            "createdAt": 1745613655342,
            "updatedBy": "ereyes@novosit.com",
            "updatedAt": 1745613655347,
            "documentDate": 1745613655342,
            "expirationDate": 1830312000000
        },
        {
            "documentId": "680019c13367faff7709d60b",
            "lastDocumentVersionId": "680019de69fd21f18090a256",
            "name": " -  - ",
            "documentTypeId": "6723e1f19b56b50c3e77177a",
            "documentTypeName": "Condiciones particulares",
            "createdAt": 1744837057307,
            "updatedBy": "michael.santana@lacolonial.com.do",
            "updatedAt": 1744837086392,
            "documentDate": 1744837086390,
            "expirationDate": null,
            "templateVersionId": "680019de69fd21f18090a255"
        },
        {
            "documentId": "680016473367faff7709d609",
            "lastDocumentVersionId": "680016473367faff7709d60a",
            "name": " -  - ",
            "documentTypeId": "6723e1f19b56b50c3e77177a",
            "documentTypeName": "Condiciones particulares",
            "createdAt": 1744836167873,
            "updatedBy": "michael.santana@lacolonial.com.do",
            "updatedAt": 1744836167877,
            "documentDate": 1744836167873
        },
        {
            "documentId": "6800096b69fd21f18090a252",
            "lastDocumentVersionId": "6800096b69fd21f18090a253",
            "name": " -  - ",
            "documentTypeId": "6723e1f19b56b50c3e77177a",
            "documentTypeName": "Condiciones particulares",
            "createdAt": 1744832875038,
            "updatedBy": "michael.santana@lacolonial.com.do",
            "updatedAt": 1744832875044,
            "documentDate": 1744832875038
        }
    ],
    "pageLength": 15,
    "pageNumber": 0,
    "requestedPageLength": 15
}
Modified at 2025-05-12 21:12:59
Previous
Document Delete
Next
Document Search
Built with