Skip to main content
GET
/
orders
/
{order_id}
Get Order
curl --request GET \
  --url https://sandbox.flowwise.com/router/orders/{order_id} \
  --header 'x-client-id: <api-key>' \
  --header 'x-client-secret: <api-key>'
{
  "order_id": "order_summer_fashion_001",
  "project_id": "proj_fashion_store_2024",
  "customer_email": "priya.sharma@example.com",
  "customer_id": "cust_priya_sharma_2024",
  "order_status": "ACTIVE",
  "order_currency": "INR",
  "payment_methods": "cc,dc,upi,nb,wallet",
  "order_note": "Summer collection dress - Medium size, Blue color",
  "checkout_url": "https://payments.flowwise.com/checkout/order_summer_fashion_001",
  "order_hash": "a7f8e3d2c1b9f4e6d8a2c5b7f9e3d1a8",
  "order_expiry_time": "2024-12-03T16:30:00Z",
  "added_on": "2024-12-03T14:30:00Z"
}

Authorizations

x-client-id
string
header
required

Client app ID. You can find your app ID in the Merchant Dashboard.

x-client-secret
string
header
required

Client secret key. You can find your secret key in the Merchant Dashboard.

Path Parameters

order_id
string
required

Unique identifier for the order.

Example:

"order_summer_fashion_001"

Response

Success response for order retrieval.

order_id
string

Unique identifier for the order.

Example:

"order_summer_fashion_001"

project_id
string

Identifier for the project associated with the order.

Example:

"proj_fashion_store_2024"

customer_email
string

Email address of the customer.

Example:

"priya.sharma@example.com"

customer_id
string

Unique identifier for the customer.

Example:

"cust_priya_sharma_2024"

order_status
string

Current status of the order.

Example:

"ACTIVE"

order_currency
string

Currency code for the order amount.

Example:

"INR"

payment_methods
string

Available payment methods for the order.

Example:

"cc,dc,upi,nb,wallet"

order_note
string

Additional notes or description for the order.

Example:

"Summer collection dress - Medium size, Blue color"

checkout_url
string<uri>

URL for the customer to complete the payment.

Example:

"https://payments.flowwise.com/checkout/order_summer_fashion_001"

order_hash
string

Hash value for the order used for payment processing.

Example:

"a7f8e3d2c1b9f4e6d8a2c5b7f9e3d1a8"

order_expiry_time
string<date-time>

Date and time when the order expires.

Example:

"2024-12-03T16:30:00Z"

added_on
string<date-time>

Date and time when the order was created.

Example:

"2024-12-03T14:30:00Z"