> ## Documentation Index
> Fetch the complete documentation index at: https://help-plum.xoxoday.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Send your first reward

Here’s how to place your first reward order.\\

Let’s send ourselves a test USD 50 reward\
Run the cURL command below, replacing both and with your own details:

````mdx theme={null}
---
title: "Send Your First Reward"
slug: "send-your-first-reward"
excerpt: "Here’s how to place your first reward order."
hidden: false
createdAt: "Wed Aug 06 2025 11:59:09 GMT+0000 (Coordinated Universal Time)"
updatedAt: "Fri Oct 24 2025 07:24:28 GMT+0000 (Coordinated Universal Time)"
---
Let’s send ourselves a test USD 50 reward

Run the cURL command below, replacing both <YOUR-ACCESS-TOKEN> and <YOUR-EMAIL-ADDRESS> with your own details:

```curl
curl --location 'https://stagingstores.xoxoday.com/chef/v1/oauth/api' \
--header 'Authorization: Bearer <your-access-token>' \
--header 'Content-Type: application/json' \
--data-raw '{
 "query": "plumProAPI.mutation.placeOrder",
 "tag": "plumProAPI",
 "variables": { 
 "data": {
 "productId": "55395",
 "quantity": "1",
 "denomination": "50",
 "poNumber": "",
 "email": "youremail@example.com",
 "contact": " ",
 "tag": "",
 "notifyReceiverEmail": 1
 }
 }
}'
````

### Response

If your request is successful, you’ll receive a JSON response like the one below with your voucher details.Check your inbox — your demo reward has just landed:

```json theme={null}
{
 "data": {
 "placeOrder": {
 "status": 1,
 "data": {
 "orderId": 6552967,
 "orderTotal": 8.79,
 "rawOrderTotal": 8.7917,
 "orderDiscount": "",
 "rawOrderDiscount": "",
 "discountPercent": "0",
 "currencyCode": "INR",
 "currencyValue": 1,
 "amountCharged": 8.79,
 "orderStatus": "complete",
 "deliveryStatus": "delivered",
 "tag": "Hello",
 "quantity": 1,
 "vouchers": [
 {
 "productId": 55395,
 "orderId": 6552967,
 "voucherCode": "https://stagingstores.plum.gift/3YEyDBWOeuYnyzpD",
 "pin": "",
 "validity": "2026-08-19",
 "amount": 50,
 "currency": "CRC",
 "country": "IN,US",
 "type": "url",
 "currencyValue": 5.68716121
 }
 ],
 "voucherDetails": [
 {
 "orderId": 6552967,
 "productId": 55395,
 "productName": "Amazon USA - ZENDIT",
 "currencyCode": "USD",
 "productStatus": "delivered",
 "denomination": 50,
 "vendorLogo": ""
 }
 ],
 "orderMeta": {
 "email": "rishabh.kumar@xoxoday.com",
 "contact": "+91-8168147851"
 }
 }
 }
 }
}
```

### Check Your Inbox

You’ve just received a reward sent via the Xoxoday API. Congratulations — you’ve officially placed your first reward.

<Frame>
  <img src="https://mintcdn.com/plum/2PwNiWvYWdMRsthY/images/Send-Your-First-Reward-Image.png?fit=max&auto=format&n=2PwNiWvYWdMRsthY&q=85&s=55b2e387b8d9d6634b1903f4b3387512" alt="Send Your First Reward Image" width="1354" height="1254" data-path="images/Send-Your-First-Reward-Image.png" />
</Frame>
