Getting Started
This documentation provides information about the Tecspal API, which allows you to manage employees, hardware, movement requests, and orders.
Base URL
All API requests should be made to:
## Sandbox
https://tecspal-orchestrator.sandbox.lexartlabs.uy/
## Production
https://orchestrator.tecspal.com/
Request Format
All requests should include:
request: The endpoint pathvendor: "tecspal"verb: The HTTP method (GET, POST, PUT, DELETE)filtersordata: Request parameters or body
All requests are POST requests with the method in the verb field.
Response Format
All responses follow this structure:
{
"statusCode": 200,
"message": "Request successful",
"envelop": [
// Response data
]
}