Requests and filters

Request Format

We recommend using JSON for all request payloads. To do so, make sure to set the appropriate Content-Type header:

Content-Type: application/json

HTTP Methods

Dashdoc's API follows standard REST principles and uses the appropriate HTTP methods for each action:

Method
Description

GET

Used for retrieving resources.

POST

Used for creating resources.

PUT

Used for replacing resources or collections.

PATCH

Used for partially updating resources or collections.

DELETE

Used for deleting resources.

URL Structure

All endpoints follow a consistent and predictable structure.

Base URL

https://www.dashdoc.com/api/v4/

Collection endpoints

Use the plural form of the resource name. Example:

Single resource

To access a specific item, append its UID to the collection endpoint. Example:


Authentication

All requests must include an API token using the Authorization header.

Authentication

Outbound IP Addresses

If you need to whitelist Dashdoc's outbound IP addresses (for webhooks, API callbacks, or integrations), use the following IP addresses:

Production EU (api.dashdoc.eu)

Production US (api.dashdoc.com)

These IP addresses are used for all outbound connections from Dashdoc, including:

  • Webhook deliveries

  • External API integrations (telematic providers, tracking services, etc.)

  • Third-party service connections


Filtering Data

When retrieving a list of objects, you can apply filters via query parameters.

Syntax

Use the format:

Operators include:

Filter
Description

__gt

Greater than

__gte

Greater than or equal

__lt

Lower than

__lte

Lower than or equal

__in

Filter among multiple values, separated by commas

__exclude

Exclude multiple value, separated by commas

__not

Exclude single value

Example : filtering transports on updated date

GET https://www.dashdoc.eu/api/v4/transports/?updated__gte=2025-06-01T00:00:00Z

Path Parameters

Name
Type
Description

updated__gte

string

Format for dates is yyyy-mm-ddThh:mm:ssZ

Headers

Name
Type
Description

Authentication

string

Send your token `Token YOUR_API_TOKEN`

Last updated

Was this helpful?