| Send | Permission | Community scope |
|---|---|---|
Authorization: Bearer <apiKey> | store | Community scope is derived from the key; do not send a community identifier. |
[
{
"name": "Agent A",
"description": "<p>Synthetic voucher product.</p>",
"image": null,
"price": 50,
"categoryName": "Agent Test Rewards",
"discountPrice": 0,
"isDiscountEnabled": false,
"discountStartDate": null,
"discountEndDate": null,
"userInformation": {
"isEnabled": false,
"shouldCollectName": false,
"shouldCollectPhone": false,
"shouldCollectAddress": false
},
"shouldPrioritiesExpiringVouchers": false,
"shouldDisplayRemainingQuantity": true,
"expiringVoucherHighlight": {
"isEnabled": false,
"duration": 7,
"timeframe": "days"
},
"isArchived": false,
"redemptionInstructions": null,
"productPermission": [],
"isProductAccessEnabled": false,
"purchaseStatusOverrideName": null,
"vouchers": [
"AGENT-BULK-A"
],
"voucherExpireDate": "2027-01-01T00:00:00.000Z"
},
{
"name": "Agent B",
"description": "<p>Synthetic voucher product.</p>",
"image": null,
"price": 75,
"categoryName": "Agent Test Rewards",
"discountPrice": 0,
"isDiscountEnabled": false,
"discountStartDate": null,
"discountEndDate": null,
"userInformation": {
"isEnabled": false,
"shouldCollectName": false,
"shouldCollectPhone": false,
"shouldCollectAddress": false
},
"shouldPrioritiesExpiringVouchers": false,
"shouldDisplayRemainingQuantity": true,
"expiringVoucherHighlight": {
"isEnabled": false,
"duration": 7,
"timeframe": "days"
},
"isArchived": false,
"redemptionInstructions": null,
"productPermission": [],
"isProductAccessEnabled": false,
"purchaseStatusOverrideName": null,
"vouchers": [
"AGENT-BULK-B"
],
"voucherExpireDate": "2027-01-01T00:00:00.000Z"
}
]meta.code = PRODUCTS_BULK_CREATED{
"meta": {
"status": "success",
"statusCode": 201,
"code": "PRODUCTS_BULK_CREATED",
"created": 2
},
"message": "Create products in bulk successfully",
"data": [
{
"_id": "prd_agent_a",
"name": "Agent A",
"category": {
"_id": "cat_agent_01",
"name": "Agent Test Rewards",
"displayOrder": 10
},
"price": 50,
"stocks": 2
},
{
"_id": "prd_agent_b",
"name": "Agent B",
"category": {
"_id": "cat_agent_01",
"name": "Agent Test Rewards",
"displayOrder": 10
},
"price": 75,
"stocks": 2
}
]
}meta.code, never message text.| HTTP | Machine code | What the caller should do | Retry? |
|---|---|---|---|
| 400 | VALIDATION_FAILED | Repair the indexed item; the request writes nothing. | No, fix first |
| 401 | AUTH_API_KEY_REQUIRED | Add the Authorization header. | No, fix first |
| 401 | AUTH_API_KEY_INVALID | Replace or rotate the key. | No, fix first |
| 401 | AUTH_API_KEY_VALIDATION_FAILED | Authentication could not be completed. | Yes, with backoff |
| 403 | AUTH_PERMISSION_REQUIRED | Request the store permission; no resource data is returned. | No, fix first |
| 409 | STORE_RESOURCE_CONFLICT | Resolve conflicting items before retrying. | After reconciliation |
| 500 | INTERNAL_ERROR | Retry with exponential backoff and the same request context, then escalate. | Yes, with backoff |
curl --location 'https://api.returning.ai/v1/products/bulk' \
--header 'Authorization: Bearer XXXXXX' \
--header 'Content-Type: application/json' \
--data '[
{
"name": "Premium Voucher",
"description": "<p>Premium access reward.</p>",
"image": "https://example.com/product.png",
"price": 100,
"categoryName": "Premium Rewards",
"discountPrice": 90,
"isDiscountEnabled": false,
"discountStartDate": null,
"discountEndDate": null,
"userInformation": {
"isEnabled": false,
"shouldCollectName": false,
"shouldCollectPhone": false,
"shouldCollectAddress": false
},
"shouldPrioritiesExpiringVouchers": false,
"shouldDisplayRemainingQuantity": true,
"expiringVoucherHighlight": {
"isEnabled": false,
"duration": 7,
"timeframe": "days"
},
"isArchived": false,
"redemptionInstructions": "<p>Show this voucher at checkout.</p>",
"productPermission": [
{
"isEnabled": true,
"type": "role",
"permission": {
"roleNames": [
"VIP Member"
],
"tagNames": [
"Early Access"
],
"usernames": [
"alex"
],
"combination": [
{
"type": "role",
"values": [
"VIP Member"
]
}
]
},
"purchaseAccess": {
"specialPrice": 80,
"isSpecialPriceEnabled": false
},
"purchaseLimit": {
"isPurchaseLimitEnabled": false,
"quantity": 1,
"intervalCount": 1,
"intervalUnit": "months"
},
"accessLevel": "full-access",
"isExclusiveTagEnabled": false
}
],
"isProductAccessEnabled": false,
"purchaseStatusOverrideName": null,
"vouchers": [
"VOUCHER-001",
"VOUCHER-002"
],
"voucherExpireDate": "2026-12-31T00:00:00.000Z"
}
]'{
"meta": {
"status": "success",
"statusCode": 201,
"created": 1
},
"message": "Create products success.",
"data": [
{
"_id": "507f1f77bcf86cd799439011",
"communityID": "6502c9e514a3e564c5c09c0a",
"name": "Premium Voucher",
"description": "<p>Redeem for premium access.</p>",
"image": "https://example.com/product.png",
"price": 100,
"category": "Premium Rewards",
"stocks": 2,
"discountPrice": 90,
"isDiscountEnabled": false,
"discountStartDate": null,
"discountEndDate": null,
"userInformation": {
"isEnabled": false,
"shouldCollectName": false,
"shouldCollectPhone": false,
"shouldCollectAddress": false
},
"shouldPrioritiesExpiringVouchers": false,
"shouldDisplayRemainingQuantity": true,
"expiringVoucherHighlight": {
"isEnabled": false,
"duration": 7,
"timeframe": "days"
},
"isArchived": false,
"totalOrders": 0,
"redemptionInstructions": "<p>Show this voucher at checkout.</p>",
"productPermission": [
{
"isEnabled": true,
"type": "role",
"permission": {
"roleNames": [
"VIP Member"
],
"tagNames": [
"Early Access"
],
"usernames": [
"alex"
],
"combination": [
{
"type": "role",
"values": [
"VIP Member"
]
}
]
},
"purchaseAccess": {
"specialPrice": 80,
"isSpecialPriceEnabled": false
},
"purchaseLimit": {
"isPurchaseLimitEnabled": false,
"quantity": 1,
"intervalCount": 1,
"intervalUnit": "months"
},
"accessLevel": "full-access",
"isExclusiveTagEnabled": false
}
],
"isProductAccessEnabled": false,
"purchaseStatusOverride": {
"isEnabled": false,
"status": null
},
"createdAt": "2026-06-09T00:00:00.000Z",
"updatedAt": "2026-06-09T00:00:00.000Z"
}
]
}