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)

Login

POST
/login
Authenticates a user and hands back an access token (JWT).
Autentica al usuario y devuelve un token de acceso (JWT).

Request

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

Examples

Responses

🟢200OK
application/json
Success
Body

🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://localhost:44397/login' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "username": "colonial01",
    "password": "colonial01"
}'
Response Response Example
200 - Example 1
{
    "token": "adipisicing ex non eiusmod in"
}
Modified at 2025-05-01 14:17:35
Previous
Prodoctivity Api(FileManager)
Next
Document Delete
Built with