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

Cancel a loading

Prod Env
https://www.loadingcalendar.com/api/v1
Prod Env
https://www.loadingcalendar.com/api/v1
DELETE
https://www.loadingcalendar.com/api/v1
/loadings/{id}
Loadings
Cancels an existing loading. Cannot cancel already cancelled loadings.

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
Loading cancelled
Body

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