{ "opencollection": "1.0.0", "info": { "name": "AnchorBrowser Agentic capabilities Certificates API", "version": "1.0.0" }, "items": [ { "info": { "name": "Certificates", "type": "folder" }, "items": [ { "info": { "name": "List Certificates", "type": "http" }, "http": { "method": "GET", "url": "https://api.anchorbrowser.io/v1/certificates", "auth": { "type": "apikey", "key": "anchor-api-key", "value": "{{anchor-api-key}}", "placement": "header" } }, "docs": "Get all CA certificates uploaded for the team" }, { "info": { "name": "Upload Certificate", "type": "http" }, "http": { "method": "POST", "url": "https://api.anchorbrowser.io/v1/certificates", "body": { "type": "multipart-form", "data": [ { "name": "name", "type": "text", "value": "" }, { "name": "file", "type": "text", "value": "" }, { "name": "description", "type": "text", "value": "" } ] }, "auth": { "type": "apikey", "key": "anchor-api-key", "value": "{{anchor-api-key}}", "placement": "header" } }, "docs": "Upload a CA certificate to trust in browser sessions. Certificates are managed at the team level.\nOnce uploaded, reference the certificate by name when creating sessions to trust services using that CA.\n\nSee [CA Certificates documentation](/advanced/ca-certificates) for more details.\n" }, { "info": { "name": "Delete Certificate", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.anchorbrowser.io/v1/certificates/:name", "params": [ { "name": "name", "value": "", "type": "path", "description": "The name of the certificate to delete" } ], "auth": { "type": "apikey", "key": "anchor-api-key", "value": "{{anchor-api-key}}", "placement": "header" } }, "docs": "Delete a CA certificate by name. The certificate will be removed from storage and can no longer be used in new sessions." } ] } ], "bundled": true }