Get Invoice Details
After placing an invoice, you can know about the status of your invoice using invoice Status query API
In this page, you will learn how to make a request to inquire about the status of an order.
Get Invoice Details
To get your e-invoice details, you need to request using the POST method in our sandbox environment.
-Here is the request URL:
-Once you have a fully tested payment flow and you are ready for production, use the following production API endpoint URL instead
-Request Parameters:
- Header: Authorization(API Calls Signature), MerchantId
- Json object containing the request information:
HTTP POST Parameters
-Here is a detailed description for the parameters you need to complete the POST request:
-An example of invoice details request is as follows :
Order Status Query Response
-Response Parameters:
the parameters contained in the response received whenever you call the Order Status Query API as a JSON Object.
-Here is a detailed description for the parameters received in the response:
Parameter | type | Description | example | ||
---|---|---|---|---|---|
code | String |
Transaction response code. | 00000 | ||
message | String |
Transaction response information. | SUCCESSFUL | ||
invoiceNo | String |
Invoice ID. | 20459544 | ||
status | String |
Invoice status. | unpaid | ||
invoiceLink | String |
Invoice payment link. | https://cashier.opaycheckout.com?vid=1d400b9adbdd42c7825847bc5ed8ff50 | ||
invoiceName | String |
Invoice Name. | OPay Test Invoice | ||
description | String |
Invoice description. | OPay Test Invoice description | ||
amount
|
|||||
total | Long |
Invoice Amount. | 10000 (cents) | ||
currency | String |
Currency type. | EGP | ||
products
|
|||||
productNo | String |
Product ID in OPay system. | 10001 | ||
merchantProductNo | String |
Merchant Product ID in merchant system. | 1000000570 | ||
name | String |
Product name. | Product X | ||
image | String |
Product image url. | https://www.yourproduct.com/product1.png | ||
description | String |
Product description. | Product X description | ||
price
|
|||||
total | Long |
Invoice Amount. | 10000 (cents) | ||
currency | String |
Currency type. | EGP | ||
quantity | Integer |
Product quantity. | 5 | ||
customer
|
|||||
name | String |
Customer name. | Test Name | ||
mobile | String |
Customer mobile. | +2010xxxxxxxx | ||
String |
Customer email. | email@domain.com | |||
country | String |
Merchant country code. | EG | ||
merchantId | String |
Merchant ID in OPay system. | 256612345678901 | ||
lang | String |
Language of Email and SMS notification.Value: EN or AR. Default language is EN. | EN or AR | ||
notifyMethod | String |
Invoice notification method. | BOTH,EMAIL or SMS .Default is BOTH. | ||
paymentType | String |
Invoice payment method. | opaylink | ||
totalServiceFee
|
|||||
total | Long |
The calculated total service fee. | 100 piastres = 1 EGP (cent unit). | ||
currency | String |
Currency type. | EGP |
Error Handling
After submitting an API call to OPay, you receive a response back to inform you that
your request was received and processed. A successful OPay API should return a status code 00
,
meanwhile, in a situation where any payment processing error occurred, you will receive an error code with a
message to describe the reason of the error. A sample error response can be found below.
Depending on the HTTP status code of the response, you should build some logic to handle any errors that a request or the system may return. A list of possible potential error codes that you may receive can be found below. A full list of all possible error codes can be found in the Error Codes section.
Error Code | Error Message |
---|---|
02001 | |
Invalid characters in mobile number. | |
Mobile number format should be like this +201088889999 | |
Merchant Product ID does not exist, please create it in merchant dashboard first. | |
Please merge the same products. | |
Products is required. | |
Invoice amount can not be 0 |