Endpoints

Documentation

General info

Below you can find all available endpoints for this version. When you want to try an endpoint in this page you need to provide your API key in the right top corner of this page before consuming.

Please note that endpoints marked as scheduled are not designed / optimized for real-time calls. Some of these calls can rely on caching objects to increase performance.


To top

Authentication errors

Authentication errors will be indicated with a HTTP status code 403 Forbidden.

Example:

  1. Invalid authentication

    Status: 403

    
    {
        "Message": "No apikey in header"
    }
    
To top

Endpoint errors

All other errors are indicated with the HTTP status code 400 or 401.

The body is always a message with a dictionary of extra info

Validation errors, for example, missing required values, are shown under the key “ModelState” with as value a JSON object with invalid field a list of messages.

Example:

  1. Missing required field 'ExpectedDeliveryDate'

    Status: 400 Bad Request

    Body:

    
    {
        "Message": "The request is invalid.",
        "ModelState": {
            "ExpectedDeliveryDate": ["The ExpectedDeliveryDate property is required."]
        }
    }
    
To top

Contact and support

Any technical questions about integrating with this API can be sent to: support@tritac.com. You can compose these emails in Dutch.


To top