Help Center/ CloudPond/ API Reference/ API/ Orders/ Querying Order Details
Updated on 2026-06-12 GMT+08:00

Querying Order Details

Function

This API is used to query order details.

Authorization Information

Each account has all the permissions required to call all APIs, but IAM users must be assigned the required permissions.

  • If you are using role/policy-based authorization, see Permissions Policies and Supported Actions for details on the required permissions.
  • If you are using identity policy-based authorization, no identity policy-based permission required for calling this API.

URI

GET /v2/{domain_id}/delivery-orders/{delivery_order_id}

Table 1 Path Parameters

Parameter

Mandatory

Type

Description

domain_id

Yes

String

Account ID in the path.

delivery_order_id

Yes

String

Order ID.

Request Parameters

Table 2 Request header parameters

Parameter

Mandatory

Type

Description

X-Auth-Token

Yes

String

User token.

Response Parameters

Status code: 200

Table 3 Response body parameters

Parameter

Type

Description

delivery_order

DeliveryOrder object

Order information.

Table 4 DeliveryOrder

Parameter

Type

Description

id

String

Order ID.

name

String

Order name.

domain_id

String

Account ID.

status

String

Order status.

  • CANCELLED: Canceled

  • PROCESSING: Processing

  • ACCEPTING: Acceptance pending

  • SUCCESS: Succeeded

  • FAIL: Failed

  • DELETED: Deleted

edge_site_id

String

Edge site ID.

effected_at

String

Effective time. The billing of the offerings associated with the order starts from this time.

created_at

String

Creation time.

updated_at

String

Update time.

Example Requests

Querying order details

GET https://{ies_endpoint}/v2/{domain_id}/delivery-orders/{delivery_order_id}

Example Responses

Status code: 200

successful operation

{
  "delivery_order" : {
    "id" : "00000000-0000-000-0000-000000000000",
    "name" : "delivery_order-zurcq",
    "domain_id" : "00000000000000000000000000000000",
    "status" : "PROCESSING",
    "edge_site_id" : "00000000-0000-000-0000-000000000000",
    "effected_at" : "2026-11-23T08:48:16Z",
    "created_at" : "2026-01-04T07:05:14.405839Z",
    "updated_at" : "2026-01-04T07:05:14.405839Z"
  }
}

Status Codes

Status Code

Description

200

successful operation

Error Codes

See Error Codes.