Parrot External API
  1. Endpoints
Parrot External API
  • Home
  • Changelog
  • Authentication and Usage
  • Endpoints
    • Inventory Management
      • List Suppliers
      • List Supplies
    • List All Stores
      GET
    • List Order Items
      GET
    • List Order Payments
      GET
    • List Orders
      GET
    • List Cashier Sessions
      GET
    • List Store Users
      GET
    • List Order Invoices
      GET
  1. Endpoints

List Store Users

Testing
GET
/v1/store-users/
This endpoint lists all the users for a given store

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params
pageSize
integer 
optional
Example:
2
page
string 
optional
Example:
0
storeUUID
array[string]
optional
Example:
["a2f09385-7f1b-436c-9baa-bb9cf1174c25","206b8416-c3c8-4053-9bdf-a11f3ddd7da1"]

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/store-users/?pageSize=2&page=0&storeUUID=a2f09385-7f1b-436c-9baa-bb9cf1174c25&storeUUID=206b8416-c3c8-4053-9bdf-a11f3ddd7da1'

Responses

🟢200OK
application/json
Body
pagination
object 
required
next
integer 
required
previous
null 
required
count
integer 
required
current
integer 
required
pageSize
integer 
required
data
array [object {4}] 
required
uuid
string 
required
email
string  | null 
required
firstName
string 
required
lastName
string 
required
datetime
string 
required
Example
{
  "pagination": {
    "next": 1,
    "previous": null,
    "count": 28,
    "current": 0,
    "pageSize": 10
  },
  "data": [
    {
      "uuid": "004c4d73-b3a7-4a00-ae95-d05904e36b2f",
      "email": null,
      "firstName": "Mayel",
      "lastName": "Hernández Palacios"
    },
    {
      "uuid": "005687f4-5c3e-4e1e-b7d8-be46a9d2d290",
      "email": null,
      "firstName": "Andrea",
      "lastName": "Castil"
    },
    {
      "uuid": "007f490a-8db9-4a6f-8070-03b0089f7306",
      "email": null,
      "firstName": "Danna Paola",
      "lastName": "Bahena Martínez"
    },
    {
      "uuid": "00d65034-2bd4-4ed4-b224-d4cc13a7aa85",
      "email": null,
      "firstName": "Jose Juan",
      "lastName": "Sánchez Méndez"
    },
    {
      "uuid": "01261364-2361-4e88-8e8c-fbc658b7096f",
      "email": null,
      "firstName": "Axel Fernando",
      "lastName": "Hernandez Ruiz"
    },
    {
      "uuid": "035a246a-f51f-4f73-810c-f9f549fe870f",
      "email": null,
      "firstName": "Leonardo Enrique",
      "lastName": "Martinez Facio"
    },
    {
      "uuid": "04b0a26c-3a3c-486a-8c7b-f7a58ec38440",
      "email": "coffee@parrot.com.mx",
      "firstName": "Parrot",
      "lastName": "Parrot"
    },
    {
      "uuid": "04b2326d-a902-46e8-b32e-28a5d6466043",
      "email": null,
      "firstName": "Carmen Yazmin",
      "lastName": "Atenco Hernandez"
    },
    {
      "uuid": "04d3888b-bae1-4cd7-98eb-67d4dcbc31ce",
      "email": null,
      "firstName": "Verónica Fernanda",
      "lastName": "Vázquez López"
    },
    {
      "uuid": "0674965a-8309-4148-a93e-146b01644b82",
      "email": null,
      "firstName": "Pilar Osmara",
      "lastName": "Castillo García"
    }
  ],
  "datetime": "2025-05-10T15:20:14-06:00"
}
Modified at 2025-05-13 22:05:10
Previous
List Cashier Sessions
Next
List Order Invoices
Built with