Get Deliveries by ExternalId
GEThttps://api.goodsdelivery.io/v1/deliveries/externalId/:externalId
Authorization: x-api-key
name: x-api-keytype: apiKeyscopes: brand
in: header
Get Deliveries by ExternalId
Request
Path Parameters
externalId stringrequired
external Id.
Responses
- 200
- 401
Object with list of deliveries
- application/json
- Schema
- Example (from schema)
Schema
pagesCount numberrequired
page numberrequired
objectsCount numberrequired
objects object[]required
{
"pagesCount": 0,
"page": 0,
"objectsCount": 0,
"objects": [
{
"jobDetails": {
"id": "string",
"shortId": "string",
"externalId": "string",
"brandId": "string",
"brandName": "string",
"brandLogoUrl": "string",
"consumer": {
"firstName": "string",
"lastName": "string",
"phone": "string",
"email": "user@example.com"
},
"pickUp": {
"name": "string",
"address1": "string",
"address2": "string",
"city": "string",
"zipCode": "string",
"state": "string",
"country": "string",
"note": "string",
"coordinates": {
"lat": 0,
"lng": 0
}
},
"dropOff": {
"name": "string",
"address1": "string",
"address2": "string",
"city": "string",
"zipCode": "string",
"state": "string",
"country": "string",
"note": "string",
"coordinates": {
"lat": 0,
"lng": 0
}
},
"serviceType": "SAME_DAY",
"contactlessPreferred": true,
"addons": [
"EXTRA_INSURANCE"
],
"packagesTotalValueUsd": 0,
"packages": [
{
"volumeFt3": 0,
"weightLbs": 0,
"lengthIn": 0,
"widthIn": 0,
"heightIn": 0
}
],
"savedCo2Kg": 0,
"createdAt": "string",
"updatedAt": "string"
},
"deliveryDetails": {
"pickUpTimeSlot": {
"earliest": "string",
"latest": "string"
},
"dropOffTimeSlot": {
"earliest": "string",
"latest": "string"
},
"courier": {
"name": "string",
"phone": "string",
"photo": "string",
"vehicleType": "string",
"vehicleImage": "string",
"realTimeCoordinates": {
"lat": 0,
"lng": 0
}
},
"status": {
"currentStatus": "string",
"eta": "2024-06-06T14:00:40.045Z",
"trackingUrl": "string",
"totalStops": 0,
"stopNumber": 0,
"courierAtStop": 0
}
},
"historyDetails": {
"earlierStatuses": [
{
"status": "string",
"changedAt": "2024-06-06T14:00:40.045Z",
"courierName": "string",
"courierPhotoUrl": "string"
}
],
"failedAttempts": 0
},
"completionDetails": {
"completionTime": "2024-06-06T14:00:40.045Z",
"proofOfDelivery": {
"photoUrls": [
"string"
],
"signatureUrl": "string"
},
"coordinatesAtCompletion": {
"lat": 0,
"lng": 0
},
"completionNote": "string",
"feedback": "string",
"rating": 0
}
}
]
}
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
message stringrequired
Human readable error message.
code stringrequired
Machine readable error message.
more url
More help on the error here.
{
"message": "string",
"code": "string",
"more": "string"
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X GET 'https://api.goodsdelivery.io/v1/deliveries/externalId/:externalId' \
-H 'Accept: application/json' \
-H 'x-api-key: <API_KEY_VALUE>'
ResponseClear