---
title: "Get Order details based on the generated Order reference"
method: GET
path: "/v1/checkout/order/{orderReference}"
tags: ["Charge"]
---

# Get Order details based on the generated Order reference

`GET /v1/checkout/order/{orderReference}`

Use this endpoint to fetch a single checkout order, using the order reference that was returned when the Order was created

## Path parameters

- `orderReference` string, required

## Response `200`

OK - your request was successful.

- object
  - `code` string, required — Response Code
  - `description` string, required — Response description
  - `data` GetOrderDetails, required
    - `order` OrderDetailsObject
      - `orderId` string — Id generated by Nomba for the checkout order
      - `orderReference` string — Reference of the online checkout order to be created
      - `customerId` string — Customer id
      - `accountId` string — The account Id whose wallet will be credited when the order is paid
      - `callbackUrl` string — Merchant callback url for redirect after payment
      - `customerEmail` string — Customer email
      - `amount` number, double — Amount to pay
      - `currency` 'NGN' — Currency of the money
      - `businessName` string — Business Name
      - `businessEmail` string — Business email
      - `businessLogo` string — Link to business logo
    - `hasSavedCards` boolean — true if the user has saved cards
    - `base64EncodedRsaPublicKey` string — Base64 encoded RSA public key, returned if data encryption is enabled to submit the card details, else an empty string

## Other responses

- `400` — The request body sent by merchant did not pass the validation checks
- `401` — The access_token provided to access the resource is missing or invalid.
- `403` — The client does not have the permissions to access this resource
- `404` — The record that the client is trying to access does not exist.
- `429` — The client has maxed out the number of calls within a time period on this resource.
- `500` — Downstream system error.

---

[API](https://skmtc.net/nomba/apis/vendor-api.md) · [All operations](https://skmtc.net/nomba/apis/vendor-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/nomba/vendor-api/versions/41727ac9be5f/schema)
