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

Querying the Order List

Function

This API is used to query the order list.

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

Table 1 Path Parameters

Parameter

Mandatory

Type

Description

domain_id

Yes

String

Account ID in the path.

Table 2 Query Parameters

Parameter

Mandatory

Type

Description

status

No

Array of strings

The order status specified for querying orders. Multiple values are supported for query.

limit

No

Integer

Page size.

marker

No

String

Pagination identifier.

id

No

String

ID for filtering orders.

Request Parameters

Table 3 Request header parameters

Parameter

Mandatory

Type

Description

X-Auth-Token

Yes

String

User token.

Response Parameters

Status code: 200

Table 4 Response body parameters

Parameter

Type

Description

delivery_orders

Array of DeliveryOrder objects

Order list.

page_info

PageInfo object

Pagination information.

Table 5 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.

Table 6 PageInfo

Parameter

Type

Description

next_marker

String

Next page marker.

current_count

Integer

Number of records on the current page.

Example Requests

Querying the order list

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

Example Responses

Status code: 200

successful operation

{
  "delivery_orders" : [ {
    "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.