Reload Gift Card
Reloads a gift card with a specified amount, adding funds to the existing balance. This is typically used when a customer wants to add more money to their gift card for future use, allowing the merchant to process the reload and update the card balance accordingly.
- Type: stringx
-application Source requiredA custom HTTP header that accepts a free-form string value. It is used to identify the application making the API request. For example, if Punchh invokes the API, the value could be "punchh".
- Type: stringX
- Location Id requiredThe unique location identifier for the store or business location processing the transaction.
- Type: stringContent
- Type requiredThe media type of the request body. Must be set to
application/json. - Type: stringAuthorizationrequired
Bearer token for API authorization. Send in the format:
Bearer ACCESS_TOKEN_GOES_HERE.
Request details to reload the gift card.
- Type: number Format: doubleamountrequired
The amount for which the gift card is reloaded. Pattern:
^\d+(\.\d{0,2})?$(up to 2 decimal places). - Type: stringcard
Number max length:30Pattern: ^\d+$requiredGift Card number which will be reloaded
- Type: stringreference
Number min length:1max length:40Pattern: ^[0-9]+$requiredA unique reference number for the transaction.
- Type: string Format: date-timetransaction
Date Time U T C requiredThe transaction date and time in UTC format.
- Type: string · enumchannelvalues
- None
- P
O S - Kiosk
- Type: string | nullgift
Card Pass Code The passcode associated with the Gift Card.
- Type: string · enumpayment
Source values- Scan
To Pay - Online
- None
- Type: string | null Format: date-timetransaction
Date Time Local The transaction date and time in local format.
- application/json
- application/json
- application/json
- application/json
- application/json
- application/json
- application/json
curl https://SERVER_NAME_GOES_HERE.partech.com/giftcard/v1/reload \
--request POST \
--header 'x-applicationSource: ' \
--header 'X-LocationId: ' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer ACCESS_TOKEN_GOES_HERE' \
--data '{
"cardNumber": "GIFT_CARD_NUMBER_GOES_HERE",
"giftCardPassCode": "GIFT_CARD_PASSCODE_GOES_HERE",
"amount": 100,
"referenceNumber": "258",
"transactionDateTimeUTC": "2026-03-06T11:28:29.7340276Z",
"transactionDateTimeLocal": "2026-03-06T11:28:29.734",
"paymentSource": "ScanToPay",
"channel": null
}'
{
"parPayTransactionId": "TRANSACTION_ID_GOES_HERE",
"statusMessage": "APPROVAL",
"balanceAmount": "600",
"amount": "100",
"transactionDateTimeUTC": "2026-03-06T11:28:29.7339913Z",
"status": "Success"
}