{ "opencollection": "1.0.0", "info": { "name": "remediation.proto Audio Secrets API", "version": "version not set" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Secrets", "type": "folder" }, "items": [ { "info": { "name": "Get the list of project secrets", "type": "http" }, "http": { "method": "GET", "url": "https://api.together.xyz/v1/deployments/secrets" }, "docs": "Retrieve all secrets in your project" }, { "info": { "name": "Create a new secret", "type": "http" }, "http": { "method": "POST", "url": "https://api.together.xyz/v1/deployments/secrets", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new secret to store sensitive configuration values" }, { "info": { "name": "Get a secret by ID or name", "type": "http" }, "http": { "method": "GET", "url": "https://api.together.xyz/v1/deployments/secrets/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Retrieve details of a specific secret by its ID or name" }, { "info": { "name": "Update a secret", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.together.xyz/v1/deployments/secrets/:id", "params": [ { "name": "id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update an existing secret's value or metadata" }, { "info": { "name": "Delete a secret", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.together.xyz/v1/deployments/secrets/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Delete an existing secret" } ] } ], "bundled": true }