Skip to main content
GET
/
api
/
commerce
/
merchant
/
invoices
/
{invoiceId}
/
status
Resolve a commerce order by invoice id (merchant scoped)
curl --request GET \
  --url https://api-beta.pepay.io/api/commerce/merchant/invoices/{invoiceId}/status \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "invoiceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "orderId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "payment": {},
    "order": {
      "orderId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "status": "<string>",
      "substatus": "<string>",
      "customerId": "<string>",
      "actions": {}
    }
  }
}

Authorizations

Authorization
string
header
required

JWT token for wallet authentication

Path Parameters

invoiceId
string<uuid>
required

The invoice id to resolve

Response

Invoice reconciliation summary

success
boolean
Example:

true

data
object