{ "opencollection": "1.0.0", "info": { "name": "Flagsmith Admin Environments Projects API", "version": "1.0" }, "request": { "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "items": [ { "info": { "name": "Projects", "type": "folder" }, "items": [ { "info": { "name": "List projects", "type": "http" }, "http": { "method": "GET", "url": "https://api.flagsmith.com/api/v1/projects/" }, "docs": "Retrieves a list of all projects the authenticated user has access to across all organisations." }, { "info": { "name": "Create a project", "type": "http" }, "http": { "method": "POST", "url": "https://api.flagsmith.com/api/v1/projects/", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new project within an organisation. Projects are containers for environments and feature flags." }, { "info": { "name": "Get a project", "type": "http" }, "http": { "method": "GET", "url": "https://api.flagsmith.com/api/v1/projects/:project_id/", "params": [ { "name": "project_id", "value": "", "type": "path", "description": "The unique identifier for the project" } ] }, "docs": "Retrieves the details of a specific project by its ID, including its name, organisation, and associated environments." }, { "info": { "name": "Update a project", "type": "http" }, "http": { "method": "PUT", "url": "https://api.flagsmith.com/api/v1/projects/:project_id/", "params": [ { "name": "project_id", "value": "", "type": "path", "description": "The unique identifier for the project" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates the details of an existing project. Allows modification of the project name and other configurable properties." }, { "info": { "name": "Delete a project", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.flagsmith.com/api/v1/projects/:project_id/", "params": [ { "name": "project_id", "value": "", "type": "path", "description": "The unique identifier for the project" } ] }, "docs": "Permanently deletes a project and all associated environments, feature flags, and data. This action cannot be undone." } ] } ], "bundled": true }