- APIs
- API Reference
- Resources
-
Overview
-
API Reference
- Appointment
- Quotes
- Invoices
- Payments
- Clients
- Client Forms
- Client Documents
- Client Notes
- Client Alerts
- Client Allergies
- Client Communications
- Leads
- Services
- Products
- Packages
- Schedules
- Marketing Sources
- Resources
- Settings
- Tax
- Locations
- Users
- Discounts
- Gift Vouchers
- Labels
- Rooms
- Equipment
- Reports
- Cancellation Policy
- Medical Conditions
- Drugs
- Forms
-
Timesheets
-
Webhooks
List equipment
Returns a list of all equipment

https://api.oauth.pabau.com/{api_key}/resources/equipment
Request
Query Parameters: | |
api_key * | |
per_page | (int) Number of records per page. Default 20, maximum 50 |
page | (int) Page number. If not provided will return the first fetched |
order | ASC or DESC. Default DESC |
Response sample
application/json
{
"token": "{token}",
"expiration": "2024-05-14T10:34:52.156Z",
"tenant": "{tenant}",
"catalog": {
},
"success": true,
"total": 2,
"resources": [
{
"id": {id},
"equipment_name": "{name}",
"quantity": "1"
},
{
"id": {id},
"equipment_name": "{name}",
"quantity": "1"
}
]
}