POST
/
api
/
v1
/
gift_requests
curl --request POST \
  --url https://api.thnks.com/api/v1/gift_requests \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "gift_id": 123,
  "recipients": [
    {
      "email": "<string>",
      "first_name": "<string>",
      "last_name": "<string>",
      "message": "<string>",
      "gift_redeem_type": "<string>"
    }
  ]
}'
Content-Type
string
default:"application/json"

This should always be application/json

gift_id
integer
required

Variable containing Thnks ID of the Thnks to be sent

recipients
array