⬆️Request and Response

Request to the API endpoint

Retrieves a list of orders that meet the specified criteria

GET https://api.alephcrm.com/v2/accounts/{accountId}/stores

Query Parameters

Parameters details

API_KEY

The API_KEY that was provided.

accountId

The Alephee account ID of the marketplaces you are trying to get.

allowPickupInStores

Filter the stores that are enabled to work as a “Pickup in store” branch. If true, the endpoint will return only those stores that are enabled as “Pickup in store” If false, the endpoint will return only those stores that are not enabled as “Pickup in store” If null (default) the endpoint will return all the stores.

withAccountPickup

Filter the stores that have an associated seller account. If true, the endpoint will return only those stores that have an associated seller account. If false, the endpoint will return only those stores that have no seller account registered. If null (default) the endpoint will return all the stores.

marketplace

Filters stores belonging to the provided marketplace. See marketplaces ID section and the GET marketplaces endpoint for the coding reference.

sort

Indicates the field to be sorted by (ascending only). Available fields: ID, dateCreated

offset

Used for paging. Moves the inferior limit of the records to the provided one. For example, offset=50 gets the rows skipping the first 50 records.

limit

Used for paging. Defines the number of records to be returned. For example, limit=10 gets only 10 records.

Last updated