The Secursus Integration API is organized around REST. Our API has predictable resource-oriented URLs, accepts form-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, authentication, and verbs.
The Secursus API includes five entry points that allow you to create, retrieve and cancel a transport insurance subscription. The last two entry points allowing you to test the connection and calculate the price of insurance.
For security reasons, TLS must be enabled and HTTPS is required for each of your API requests.
https://developer.secursus.com/api/auth
Authentification : Test the connection and get account status information.
https://developer.secursus.com/api/parcels/price
Price : Getting calculate the insurance fees.
https://developer.secursus.com/api/parcels/new
New parcel : Ensures an order.
https://developer.secursus.com/api/parcels/:id
Get parcel : Retrieve information from an insured order.
https://developer.secursus.com/api/parcels/:id/delete
Delete parcel : Allows you to cancel an insurance order. Attention you have a period of 12 hours maximum to cancel an insurance order.
GET https://developer.secursus.com/api/auth
POST https://developer.secursus.com/api/parcels/price
POST https://developer.secursus.com/api/parcels/new
GET https://developer.secursus.com/api/parcels/:id
DELETE https://developer.secursus.com/api/parcels/:id/delete