Deliveries
The /deliveries
endpoint allows you to view your Dripcel deliveries.
View all deliveries
GET /deliveries
View a list of all your deliveries.
- 🔐 Permissions:
["delivery.read"]
Request
URL Parameters
Field | Type | Required | Description |
---|---|---|---|
cell | string | ❌ | The MSISDN of the contact you want to query. |
customerId | string | ❌ | The unique id of a particular send you want to query. See Send SMS for more details |
note
Neither parameter is required individually, but at least one must be provided.
Response
Success
200
{
ok: true,
data: Delivery[]
}
Error
400
{
ok: false;
error: string;
}