POST /reseller-variants.json
POST /reseller-variants.json
curl \
-X POST http://api.example.com/v1/reseller-variants.json \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"resellerId":42,"trigger":"manual","variantId":42}'
Request example
{
"resellerId": 42,
"trigger": "manual",
"variantId": 42
}
Response examples (200)
{
"createdAt": "2024-05-04T09:42:00+00:00",
"id": 42,
"resellerId": 42,
"trigger": "manual",
"updatedAt": "2024-05-04T09:42:00+00:00",
"variantId": 42
}