Download OpenAPI specification:
Create a new signal request. If a signal you own or that is shared with you is received by VEROO, and a matching signal request exists, then the signal is forwarded to your webhook.
| validFrom | string <date-time> The time at which you want to start receiving signals. If undefined, you will receive signals from now on. |
| validTo | string <date-time> The time at which you want to stop receiving signals. If undefined, you will receive signals indefinitely. |
| licensePlate required | string^[^ -]+$ The license plate of the truck whose signals you want to receive. |
{- "validFrom": "2019-08-24T14:15:22Z",
- "validTo": "2019-08-24T14:15:22Z",
- "licensePlate": "WU764GB"
}{- "signalRequestId": "31a25617-4666-4c4f-8e8f-03014eb9803e",
- "validFrom": "2019-08-24T14:15:22Z",
- "validTo": "2019-08-24T14:15:22Z",
- "licensePlate": "WU764GB",
- "isCancelled": true
}Retrieves all signal requests.
| page | string >= 1 Default: 1 The page of signal requests you want to retrieve. |
| pageSize | string >= 1 Default: 20 The number of signal requests per page. |
{- "totalCount": 0,
- "signalRequests": [
- {
- "signalRequestId": "31a25617-4666-4c4f-8e8f-03014eb9803e",
- "validFrom": "2019-08-24T14:15:22Z",
- "validTo": "2019-08-24T14:15:22Z",
- "licensePlate": "WU764GB",
- "isCancelled": true
}
]
}Retrieves a single signal request.
| signalRequestId required | string <uuid> The id of the signal request to get. |
{- "signalRequestId": "31a25617-4666-4c4f-8e8f-03014eb9803e",
- "validFrom": "2019-08-24T14:15:22Z",
- "validTo": "2019-08-24T14:15:22Z",
- "licensePlate": "WU764GB",
- "isCancelled": true
}