{ "opencollection": "1.0.0", "info": { "name": "Coolify Applications Projects API", "version": "0.1" }, "items": [ { "info": { "name": "Projects", "type": "folder" }, "items": [ { "info": { "name": "List", "type": "http" }, "http": { "method": "GET", "url": "https://app.coolify.io/api/v1/projects", "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "List projects." }, { "info": { "name": "Create", "type": "http" }, "http": { "method": "POST", "url": "https://app.coolify.io/api/v1/projects", "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Create Project." }, { "info": { "name": "Get", "type": "http" }, "http": { "method": "GET", "url": "https://app.coolify.io/api/v1/projects/:uuid", "params": [ { "name": "uuid", "value": "", "type": "path", "description": "Project UUID" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Get project by UUID." }, { "info": { "name": "Update", "type": "http" }, "http": { "method": "PATCH", "url": "https://app.coolify.io/api/v1/projects/:uuid", "params": [ { "name": "uuid", "value": "", "type": "path", "description": "UUID of the project." } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Update Project." }, { "info": { "name": "Delete", "type": "http" }, "http": { "method": "DELETE", "url": "https://app.coolify.io/api/v1/projects/:uuid", "params": [ { "name": "uuid", "value": "", "type": "path", "description": "UUID of the application." } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Delete project by UUID." }, { "info": { "name": "Environment", "type": "http" }, "http": { "method": "GET", "url": "https://app.coolify.io/api/v1/projects/:uuid/:environment_name_or_uuid", "params": [ { "name": "uuid", "value": "", "type": "path", "description": "Project UUID" }, { "name": "environment_name_or_uuid", "value": "", "type": "path", "description": "Environment name or UUID" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Get environment by name or UUID." }, { "info": { "name": "List Environments", "type": "http" }, "http": { "method": "GET", "url": "https://app.coolify.io/api/v1/projects/:uuid/environments", "params": [ { "name": "uuid", "value": "", "type": "path", "description": "Project UUID" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "List all environments in a project." }, { "info": { "name": "Create Environment", "type": "http" }, "http": { "method": "POST", "url": "https://app.coolify.io/api/v1/projects/:uuid/environments", "params": [ { "name": "uuid", "value": "", "type": "path", "description": "Project UUID" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Create environment in project." }, { "info": { "name": "Delete Environment", "type": "http" }, "http": { "method": "DELETE", "url": "https://app.coolify.io/api/v1/projects/:uuid/environments/:environment_name_or_uuid", "params": [ { "name": "uuid", "value": "", "type": "path", "description": "Project UUID" }, { "name": "environment_name_or_uuid", "value": "", "type": "path", "description": "Environment name or UUID" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Delete environment by name or UUID. Environment must be empty." } ] } ], "bundled": true }