v52

latestOpenAPI 3.0.0raw.githubusercontent.com2026-08-03269339953.6 KB
Agency Hosting: Orders

List Agency Plan orders

Returns a paginated list of Agency Plan orders accessible to the authenticated client.

get/api/agency-hosting/v1/orders

Query parameters

pageinteger
Example:1

Page number

per_pageinteger
Example:25

Number of items per page

Response

Success response

Example response

{
  "data": [
    {
      "id": 123456,
      "client_id": 123456,
      "status": "active",
      "plan": {
        "name": "Shared Business hosting",
        "key": "shared_business_hosting"
      },
      "datacenter": {
        "code": "ukfast",
        "country": "uk"
      },
      "created_at": "2024-05-29T05:49:49+00:00"
    }
  ],
  "meta": {
    "current_page": 1,
    "per_page": 15,
    "total": 100
  }
}