Skip to main content

Get Delivery Order Metrics

GET /tms/delivery-orders/get-metrics

Description

This endpoint retrieves metrics related to delivery orders. It provides information about the performance and status of delivery orders within a specified tenant and country.

Parameters

  • tenantId (string, header, required): The ID of the tenant.
  • countryCode (string, header, required): The country code where the delivery orders are processed.

Responses

  • 200 OK

    • Media type: Controls Accept header.
    • Example Value:
    {
    "status": true,
    "statusCode": 0,
    "message": "Delivery order metrics retrieved successfully",
    "data": {},
    "errors": [
    {
    "message": "string",
    "descriptiveMessage": "string"
    }
    ]
    }

#### 400 Bad Request

Description: The request could not be processed due to invalid input.
Example Value: N/A
#### 404 Not Found

Description: The specified resource could not be found.
Example Value: N/A

LANGUAGE

AUTHORIZATION

Bearer

CURL REQUEST


curl --request GET \ 
--url /tms/delivery-orders/get-metrics \
--header 'accept: application/json' \
--header 'content-type: application/json'

RESPONSE


Click Try It! to start a request and see the response here!