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