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-Type Get All

GET
/api/document-types/all
Retrieve the full list of available document types
Obtiene la lista completa de tipos de documento disponibles.

Request

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

Responses

🟢200OK
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://localhost:44397/api/document-types/all' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "documentTypes": [
        {
            "documentTypeId": "681e2186c19676a24e7796fb",
            "documentTypeVersionId": "681e2186c19676a24e7796fc",
            "name": "Acta de la última Asamblea",
            "documentGroupId": "681b7840c19676a24e7796db",
            "documentGroupName": "Carga Masiva",
            "acceptedMimeTypeList": [
                "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
                "application/pdf",
                "image/jpeg",
                "image/tiff",
                "image/bmp",
                "image/png"
            ]
        },
        {
            "documentTypeId": "681e291d68d3a03c636f3a60",
            "documentTypeVersionId": "681e291d68d3a03c636f3a61",
            "name": "Acto de Alguacil",
            "documentGroupId": "681b7840c19676a24e7796db",
            "documentGroupName": "Carga Masiva",
            "acceptedMimeTypeList": [
                "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
                "application/pdf",
                "image/jpeg",
                "image/tiff",
                "image/bmp",
                "image/png"
            ]
        },
        {
            "documentTypeId": "681e21fdda3b8bfa67c19c08",
            "documentTypeVersionId": "681e21fdda3b8bfa67c19c09",
            "name": "Anexos",
            "documentGroupId": "681b7840c19676a24e7796db",
            "documentGroupName": "Carga Masiva",
            "acceptedMimeTypeList": [
                "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
                "application/pdf",
                "image/jpeg",
                "image/tiff",
                "image/bmp",
                "image/png"
            ]
        }
    ]
}
Modified at 2025-05-12 21:41:21
Previous
Create/Update Document
Next
Document-Type Search
Built with