POST
/
cart
/
getGift
curl --request POST \
  --url https://v3.minestorecms.com/api/cart/getGift \
  --header 'Content-Type: application/json' \
  --data '{
  "gift": "Summer2024"
}'
{
  "status": true,
  "start_balance": 100,
  "end_balance": 75,
  "currency": "USD"
}

Body

application/json
gift
string
required

The name of the gift card to retrieve.

Example:

"Summer2024"

Response

200
application/json
Successfully retrieved gift card details or error message
status
boolean
required

Status of the request.

Example:

true

start_balance
number
required

Starting balance of the gift card.

Example:

100

end_balance
number
required

Ending balance of the gift card.

Example:

75

currency
string
required

Currency of the gift card balance.

Example:

"USD"