Endpoint
POST https://api-v3.reeple.ai/giftcards/order
Request body
| Field | Type | Description |
|---|---|---|
amount | Number >= 1 | Required. Amount to load onto the gift card. |
currency | String, defaults to USD | Required. See supported currencies. |
email | String | Required. Recipient’s email address. |
productId | Number | Required. ID of the specific gift card product. |
quantity | Number | Required. Number of units to purchase. |
note | String | Optional. Alphanumeric only, max 200 characters. |
reference | String | Optional reference for the transaction. |
{
"currency": "NGN",
"productId": 0,
"amount": 1,
"email": "recipient@example.com",
"quantity": 1,
"note": "Happy birthday",
"reference": "string"
}
Response
{
"success": true,
"statusCode": 201,
"message": "Giftcard order in progress",
"data": {}
}