Multi-Store Memberships
Overview of the Multi-store Membership resource and associated endpoints.
less than a minute
IMPORTANT
Sellers building integrations into Marketplacer should only use the current GraphQL-based Seller API, and not this (REST-based) API.
All future developments, including new features will be added to the the GraphQL-based Seller API only, more details on this API can be found here
A seller can be the parent of one multi store. A multi store membership represents the relationship between a parent store and a child store.
The parent can use the inventory endpoint to manage the stock levels for the child stores. To do that, the parent must know the Seller ID of the child store.
This endpoint allows the parent to retrieve the IDs and names of the child stores.
List the members of the multi store
Request
GET /api/v2/client/multi_store_memberships
Response
{
"data": [
{
"id": 1,
"type": "multi_store_memberships",
"attributes": {
"seller_id": 1,
"seller_name": "Bob's Bikes"
}
}
]
}