Skip to main content

Customer — Get Orders

Returns the list of payment orders made for a recurring or tokenized customer.

When to Use

Use this endpoint when:

  • Showing a customer's billing history
  • Reconciling charges against your records
note

Only available after the customer has successfully bound their card.

How to Use

Endpoint
GET/v3/recurring-payment/{customer_id}/orders

Step 1: Identify the Customer

Use the customer_id returned by Create Tokenized Customer or Create Recurring Customer.

Step 2: Send the GET Request

GET /v3/recurring-payment/{customer_id}/orders.

Step 3: Iterate items

Each entry represents one charge against the customer's stored token.


Request Parameters

customer_idSTRINGrequired

Customer ID returned from Create Recurring Customer or Create Tokenized Customer

Response Parameters

itemsARRAY

List of recurring order records

idSTRING

Recurring order ID

merchantIdSTRING

Merchant ID

storeIdSTRING

Store ID

recurringCustomerIdSTRING

Customer ID

transactionIdSTRING

Transaction ID

createdAtSTRING

Order created date time

updatedAtSTRING

Order last updated date time

amountINTEGER

Order payment amount

currencySTRING

Order currency

codeSTRING

"SUCCESS" if the request succeeded, otherwise an error code.

errorOBJECT

Error details

codeSTRING

Error code if the request failed.

messageSTRING

Error message if the request failed.

debugSTRING

Debug message (sandbox only).