1. Documents
LoadingCalendar API
  • LoadingCalendar API
    • Warehouses
      • List all warehouses
      • Get a warehouse
      • Get available time slots
    • Loadings
      • List loadings
      • Create a loading
      • Get a loading
      • Update a loading
      • Cancel a loading
    • Documents
      • Add a document to a loading
        POST
      • Delete a document
        DELETE
  1. Documents

Delete a document

Prod Env
https://www.loadingcalendar.com/api/v1
Prod Env
https://www.loadingcalendar.com/api/v1
DELETE
https://www.loadingcalendar.com/api/v1
/loadings/{loading_id}/documents/{id}
Documents
Removes a document from a loading.

Request

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

Responses

🟢200
application/json
Document deleted
Body

🟠401Unauthorized
🟠404NotFound
🟠422UnprocessableEntity
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request DELETE 'https://www.loadingcalendar.com/api/v1/loadings//documents/' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
{
    "message": "Document deleted successfully"
}
Previous
Add a document to a loading
Built with