Create a service
Creates a service in the store.
shop is set server-side from the installation and must not be supplied. Services have no category field. Requires the WRITE_INVENTORY scope.Authorizations
Installed-app access token (prefix app_), issued by the OAuth install flow. The store is bound to the token server-side — never send a shop id.
Body
Service name (max 100 chars).
Price (>= 0).
Service description.
Promotional price (>= 0); nullable.
Array of image URLs.
Video URL; nullable.
Whether the service is available to book. Default true.
Whether the service is listed on the storefront. Default true.
Optional add-ons. Each: name (string, required), price (number, required), maxQuantity (integer, default 10), image (string), available (boolean, default true), description (string).
Response
Create a service — success.
201
true
"Create a service"
A business service item.
{
"_id": "66a3b1c4e1b3a40012ef2001",
"name": "Deep Tissue Massage",
"description": "60-minute full-body massage",
"price": 80,
"promoPrice": null,
"images": ["https://cdn.salesive.com/sv/massage.jpg"],
"video": null,
"available": true,
"listed": true,
"addons": [
{
"name": "Hot stones",
"price": 15,
"maxQuantity": 1,
"available": true,
"description": ""
}
],
"shop": "66a1eee0e1b3a40012ab0001",
"createdAt": "2026-06-28T09:30:00.000Z",
"updatedAt": "2026-06-28T09:30:00.000Z"
}
