GET /api/v2/deployments
Retrieve a list of all active deployments for your projects.
Request Parameters:
Parameter | Description |
---|---|
page | Page number for pagination |
filter | Status filter (active, draft, archived) |
Programmatic access to Γllycc services. Authenticate with a token and interact with our deployment, configuration, and analytics systems.
All API requests require an authentication token in the Authorization header. Generate API keys from your account settings in the dashboard.
curl -H "Authorization: Bearer YOUR_TOKEN"
https://api.glycc.net/v2/account
Retrieve a list of all active deployments for your projects.
Parameter | Description |
---|---|
page | Page number for pagination |
filter | Status filter (active, draft, archived) |
Trigger a new build for a specific project configuration.
{ "branch": "main", "config": "override.yaml" }
Purge cached assets for a specific deployment.
Parameter | Description |
---|---|
id | Cache entry identifier from /api/v2/caches |
All responses follow standard HTTP status codes and return JSON-formatted data. For error details, check the "message" field in the response body.
{ "status": "success", "data": { ... }, "meta": { "page": 1, "total": 125, "limit": 20 } }