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 Payments
      GET
    • List Orders
      GET
    • List Cashier Sessions
      GET
    • List Store Users
      GET
    • List Order Invoices
      GET
    • V1 - List Order Items
      GET
    • V2 - List Order Items
      GET
    • List Product Types
      GET
  1. Endpoints

List Product Types

Testing
GET
/v1/product-types
Retrieves the Product Types (Tipo de artículo) for the organization.
Screenshot 2025-06-01 at 3.44.17 p.m..png

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/product-types'

Responses

🟢200OK
application/json
Body
data
array [object {2}] 
required
uuid
string 
required
name
string 
required
datetime
integer 
required
Example
{
    "data": [
        {
            "uuid": "2e2a4a71-f40e-41cb-a704-39e8ead35af2",
            "name": "Otros Rest"
        },
        {
            "uuid": "7a98d141-3f73-464a-9dc9-68752a9b5aff",
            "name": "Alimentos y Platillos Preparados"
        },
        {
            "uuid": "9270a316-6eb2-4fbd-b05a-a93020b3e3d7",
            "name": "Bebidas de Reventa"
        },
        {
            "uuid": "a80e1def-bae7-4e2e-9041-d9205600440f",
            "name": "Bebidas Preparadas"
        },
        {
            "uuid": "e89e7522-2214-4d23-9ea1-04ae8fec8ed0",
            "name": "Alimentos de Reventa"
        },
        {
            "uuid": "ef9d90f3-6114-427d-96f0-f1e3649f6782",
            "name": "Alimentos para Eventos"
        }
    ],
    "datetime": 1748791963008
}
Modified at 2025-06-01 21:44:42
Previous
V2 - List Order Items
Built with