Skip to main content
POST
/
api
/
report
/
getEnvoyDeliveries
Get Envoy deliveries
curl --request POST \
  --url https://api2.rhombussystems.com/api/report/getEnvoyDeliveries \
  --header 'Content-Type: application/json' \
  --header 'x-auth-apikey: <api-key>' \
  --header 'x-auth-scheme: <x-auth-scheme>' \
  --data '
{
  "endTimestampMs": 123,
  "locationIds": [
    "<string>"
  ],
  "startTimestampMs": 123
}
'
{
  "collectedDeliveries": [
    {
      "carrier": {
        "name": "<string>"
      },
      "carrierInfo": {
        "name": "<string>"
      },
      "deliveryArea": {
        "name": "<string>"
      },
      "deliveryAreaInfo": {
        "name": "<string>"
      },
      "locationId": "<string>",
      "pickedUpAt": "<string>",
      "pickedUpBy": {
        "email": "<string>",
        "id": "<string>",
        "locationIds": [
          "<string>"
        ],
        "locations": [
          "<string>"
        ],
        "name": "<string>",
        "type": "<string>"
      },
      "receivedTimestampMs": 123,
      "recipient": {
        "email": "<string>",
        "id": "<string>",
        "locationIds": [
          "<string>"
        ],
        "locations": [
          "<string>"
        ],
        "name": "<string>",
        "type": "<string>"
      },
      "status": "<string>"
    }
  ],
  "error": true,
  "errorMsg": "<string>",
  "pendingDeliveries": [
    {
      "carrier": {
        "name": "<string>"
      },
      "carrierInfo": {
        "name": "<string>"
      },
      "deliveryArea": {
        "name": "<string>"
      },
      "deliveryAreaInfo": {
        "name": "<string>"
      },
      "locationId": "<string>",
      "pickedUpAt": "<string>",
      "pickedUpBy": {
        "email": "<string>",
        "id": "<string>",
        "locationIds": [
          "<string>"
        ],
        "locations": [
          "<string>"
        ],
        "name": "<string>",
        "type": "<string>"
      },
      "receivedTimestampMs": 123,
      "recipient": {
        "email": "<string>",
        "id": "<string>",
        "locationIds": [
          "<string>"
        ],
        "locations": [
          "<string>"
        ],
        "name": "<string>",
        "type": "<string>"
      },
      "status": "<string>"
    }
  ],
  "warningMsg": "<string>"
}

Authorizations

x-auth-apikey
string
header
required

Your API key for Rhombus.

Headers

x-auth-scheme
string
default:api-token
required

Authentication scheme indicator ("api-token").

Required string length: 9

Body

application/json
endTimestampMs
integer<int64> | null
locationIds
(string | null)[] | null
startTimestampMs
integer<int64> | null

Response

200 - application/json

OK

collectedDeliveries
object[] | null
error
boolean | null
errorMsg
string | null
pendingDeliveries
object[] | null
warningMsg
string | null