Loading...

Knowledge Base

List WordPress Hosting Orders via API

When you want to fetch WordPress hosting orders. This article explains required parameters, filtering options like customer, status, and dates, pagination handling, and example API requests to retrieve order details.

List Orders

Description

Gets a list and details of the Wordpress Hosting Orders matching the search criteria.

Parameters

NameData TypeRequired / OptionalDescription
auth-useridIntegerRequiredAuthentication Parameter
api-keyStringRequiredAuthentication Parameter
no-of-recordsIntegerRequiredNumber of Orders to be fetched
page-noIntegerRequiredPage number for which details are to be fetched
order-idArray of IntegersOptionalOrder ID(s) of the Wordpress Hosting Order(s) whose details need to be fetched
reseller-idArray of IntegersOptionalReseller ID(s) whose Wordpress Hosting Orders need to be fetched
customer-idArray of IntegersOptionalCustomer ID(s) whose Wordpress Hosting Orders need to be fetched
show-child-ordersBooleanOptionalWhether Sub-Reseller Orders need to be fetched or not
statusArray of StringsOptionalStatus of the Order: Active, InActive, Suspended or Deleted
domain-nameStringOptionalName of the Domain of the Wordpress Hosting Order
creation-date-startStringOptionalUNIX TimeStamp for listing of the Wordpress Hosting Orders whose Creation Date is greater than creation-date-start
creation-date-endStringOptionalUNIX TimeStamp for listing of the Wordpress Hosting Orders whose Creation Date is less than creation-date-end
expiry-date-startStringOptionalUNIX TimeStamp for listing of the Wordpress Hosting Orders whose expiry date is greater than expiry-date-start
expiry-date-endStringOptionalUNIX TimeStamp for listing of the Wordpress Hosting Orders whose expiry date is less than expiry-date-end
order-byArray of StringsOptionalOne or more parameters by which you want to sort the Orders. Default is orderid.

Example:

If page-no is 1, no-of-records is 30 and order-by is orderid; it will fetch the first 30 Orders which suit the search criteria sorted by orderid. If page-no is 2, no-of-records is 30 and order-by is orderid; it will fetch the second batch of 30 Orders sorted by orderid.

HTTP Method

GET

Example Test URL Request

https://test.httpapi.com/restapi/product/wordpresshostingusa/list.json?auth-userid=0&api-key=key&no-of-records=1&page-no=1&order-by=orderid

Response

Returns a hash map containing the below details of the Wordpress Hosting Orders which match the search criteria:

  • Domain Name (entity.description)

  • Order Id (orders.orderid)

  • Customer Id (entity.customerid)

  • Order Creation Timestamp (orders.creationtime)

  • Order Expiry Timestamp (orders.endtime)

  • Current Order Status (entity.currentstatus) - value will be InActive, Active, Suspended or Deleted

  • Product Name (entitytype.entitytypename)

  • Product Key (entitytype.entitytypekey)

In case of any errors, a status key with value as ERROR along with an error message will be returned.