curl --request POST \
--url https://api.toffeepay.com/v1alpha1/offers \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"game_id": "<string>",
"title": "<string>",
"image": "<string>",
"category": "<string>",
"items": [
{
"id": "<string>",
"icon": "<string>",
"amount": 123
}
],
"price": 123,
"currency": "USD",
"country": "<string>",
"user_id": "<string>",
"reference": "<string>",
"description": "<string>",
"label": "<string>",
"status": "inactive",
"stock": 123,
"return_url": "<string>",
"wallet_enabled": true
}
'