Welcome
The Salesive Apps API is what your installed app calls to read and write a merchant’s store data — orders, catalog, customers, notifications, and more. You authenticate with the app access token (prefixedapp_) your app receives when a merchant installs it, and every
endpoint is gated by the OAuth scopes that merchant granted.
The target store is bound to your token server-side from the installation. You never send a
shop id — no
x-shop-id header — so a token can only ever touch the one store it was installed
on. Use the Try it playground on any endpoint page: paste your app_ token as the Bearer
credential and call the live endpoint.Three things, don’t confuse them
| Apps API (this) | Store API | App management | |
|---|---|---|---|
| Where | https://api.salesive.com | https://store.salesive.com | Salesive dashboard |
| What | An installed app reads/writes store data | A storefront serves shoppers (products, cart, checkout) | Create, edit & submit your app |
| Auth | app_ access token (Bearer) | Shopper JWT / guest session | Your dashboard login |
- The Store API (
store.salesive.com) is a different API for storefronts, not for apps. - Managing your app — registering it, editing its listing, requesting scopes, submitting it for review — happens in the Salesive dashboard Developer console, not through an API.
Authentication
Send your app access token as a Bearer header on every request:Scopes gate everything
Every endpoint requires a specific scope that the merchant granted at install. A call without the required scope is rejected with403. Request only the scopes your app needs — see
Scopes & permissions for the full catalog and what each unlocks.
What you can call
Each resource group is gated by its matchingREAD_* / WRITE_* scope (a few are read-only for
apps). Open any group in the sidebar to see its endpoints and run them from the Try it playground.
Orders
List, inspect, create POS orders, and update orders.
Catalog
Products, menu items (foods) and services — full CRUD.
Customers
Read and manage the store’s customers.
Categories
Organize the catalog into categories.
Discounts
Coupons and discount codes.
Blogs
Storefront blog posts.
Notifications
Read the merchant’s notifications and send new ones.
Emails
Email the merchant, customers, or subscribers.
Tasks & Notes
Operational tasks and notes.
Scripts
Custom storefront scripts and tracking.
Comments
Reply to and moderate storefront comments.
Shipping & Shipday
Shipping options, shipments and Shipday dispatch.
Domains, Roles & Payouts
Read-only access to store domains, roles and payouts.
KYC
Read status and start identity verification.

