{
  "status": "success",
  "message": "Gift Card Created Successfully",
  "data": {}
}

URL

https://test-api.bvndle.com/api/v1/laas/coins/gift-card/create

Base URL

https://testapi.bvndle.com/api/v1/laas

HTTP Method

POST

Authorization Header

Bearer ACCESS_TOKEN

nametypeDescription
cardNamestringOptional
Name of the gift card
amountnumberRequired
Coin amount of the gift card
messagestringOptional
Gift card message
recipientsArrayRequired
An array of the ID of the onboarded users or the value of the user to whom you want to send the gift card
timeDateOptional
The time you want the gift card to be created, if you wish to make it at a specific time

cURL
curl --request POST
'https://test-api.bvndle.com/api/v1/laas/coins/gift-card/create' \
--header 'Content-Type: application/json' \

{
    "cardName": "User Gift Card",
    "amount": 100,
    "message": "User Gift Card",
    "recipients": ["d3c0c232-6e07-40eb-a1ee-593483d689c9"],
}
{
  "status": "success",
  "message": "Gift Card Created Successfully",
  "data": {}
}