List Shop
see list of shops
Note: your API key must have the "Shops" permission.
The List Shop API provides a paginated list of shops with options to filter and sort the results. You can retrieve a list of shops with various filters such as status and creation date, and specify the number of items per page. This API is useful for managing or displaying multiple shops and provides essential details like shop name, status, and unique identifier.
GET
https://api.payhubix.com/v1/shops/
Request Header:
X-Api-Key*
string
Your API key for authentication and authorization.
Request Params:
Name
Type
Description
page
integer
Specifies the current page of the paginated result.
Example: ?page=1
per_page
integer
Defines the number of items to display per page.
Example: ?per_page=100
Response:
Name
Type
Description
page_count*
integer
Total number of pages for the current request.
page*
integer
Current page number.
previous_page*
integer
Previous page number.
next_page*
integer
Next page number.
name*
string
Name of the shop (e.g., "Petshop").
is_sandbox*
bool
Indicates whether the shop is in sandbox mode (test mode).
status*
string
Status of the shop (whether it is Enable
or Disable
).
shop_id*
string
Unique identifier (UUID) of the shop.
website
string
Website of the shop (can be null if not provided).
logo_url
string
URL of the shop's logo (can be null if not provided).
pos_url
string
URL for create pos invoice.
created_at*
string
The timestamp when the invoice was created (in UTC).
An example of response:
Example codes:
Last updated