{ "opencollection": "1.0.0", "info": { "name": "Prophecy Connections Secrets API", "version": "1.0.0" }, "items": [ { "info": { "name": "Secrets", "type": "folder" }, "items": [ { "info": { "name": "List secrets per fabric", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/orchestration/fabric/:fabricId/secret", "headers": [ { "name": "X-AUTH-TOKEN", "value": "" } ], "params": [ { "name": "fabricId", "value": "", "type": "path", "description": "The unique ID of the parent fabric" } ] }, "docs": "List all secrets and their details from a specific fabric" }, { "info": { "name": "Add secret to fabric", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/orchestration/fabric/:fabricId/secret", "headers": [ { "name": "X-AUTH-TOKEN", "value": "" } ], "params": [ { "name": "fabricId", "value": "", "type": "path", "description": "The unique ID of the parent fabric" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Create a new secret in a specific fabric" }, { "info": { "name": "Retrieve secret details", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/orchestration/fabric/:fabricId/secret/id/:secretId", "headers": [ { "name": "X-AUTH-TOKEN", "value": "" } ], "params": [ { "name": "fabricId", "value": "", "type": "path", "description": "The unique ID of the parent fabric" }, { "name": "secretId", "value": "", "type": "path", "description": "The unique ID of the secret" } ] }, "docs": "Retrieve secret details" }, { "info": { "name": "Update secret", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/api/orchestration/fabric/:fabricId/secret/id/:secretId", "headers": [ { "name": "X-AUTH-TOKEN", "value": "" } ], "params": [ { "name": "fabricId", "value": "", "type": "path", "description": "The unique ID of the parent fabric" }, { "name": "secretId", "value": "", "type": "path", "description": "The unique ID of the secret" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update the properties of a specific secret" }, { "info": { "name": "Delete secret", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/api/orchestration/fabric/:fabricId/secret/id/:secretId", "headers": [ { "name": "X-AUTH-TOKEN", "value": "" } ], "params": [ { "name": "fabricId", "value": "", "type": "path", "description": "The unique ID of the parent fabric" }, { "name": "secretId", "value": "", "type": "path", "description": "The unique ID of the secret" } ] }, "docs": "Delete a specific secret by its ID" } ] } ], "bundled": true }