Parrot External API
  1. Endpoints
Parrot External API
  • Home
  • Changelog
  • Authentication and Usage
  • Endpoints
    • Inventory Management
      • List Suppliers
      • List Supplies
    • Orders
      • List Orders
      • V1 - List Order Items
      • V2 - List Order Items
      • List Product Types
    • Discounts
      • List Discounts
      • List Discount Usages
    • List All Stores
      GET
    • List Order Invoices
      GET
    • List Order Payments
      GET
    • List Cashier Sessions
      GET
    • List Store Users
      GET
  1. Endpoints

List All Stores

GET
/v1/stores
Retrieves all the stores for the current organization

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/v1/stores'

Responses

🟢200OK
application/json
Body
data
array [object {3}] 
required
name
string 
optional
uuid
string 
optional
organizationUUID
string 
optional
datetime
integer 
required
Example
{
    "data": [
        {
            "name": "Tacos Parrot",
            "uuid": "76d5ad71-611c-4548-88f5-5503f4b8a3af",
            "organizationUUID": "33cf023c-a1c0-4d0d-be17-6e50baccf17c"
        }
    ],
    "datetime": 1714976978153
}
🟠429Too Many Requests
Modified at 2025-07-01 17:39:19
Previous
List Discount Usages
Next
List Order Invoices
Built with