API Resources
Complete reference for all PDaaS API resources.
Available Resources
Core Resources
- Organizations - Top-level tenant containers
- Accounts - Sub-divisions within organizations
- Users - Human actors with authentication
- Service Accounts - Programmatic API access
Authorization Resources
Common Patterns
Listing Resources
All list endpoints support pagination:
GET /accounts?page=1&quantity=20&order_by=-created_at
Response:
{
"total": 45,
"page": 1,
"results": [...]
}
Creating Resources
POST /accounts
Content-Type: application/json
{
"name": "Production",
"is_default": false
}
Updating Resources
PATCH /accounts/{id}
Content-Type: application/json
{
"name": "Production Environment"
}
Deleting Resources
DELETE /accounts/{id}
Authentication
All endpoints require HMAC authentication. See Authentication for details.
Error Handling
See Errors for common error responses and status codes.