{ "opencollection": "1.0.0", "info": { "name": "Rely.io Public Automations Blueprints API", "version": "1.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Blueprints", "type": "folder" }, "items": [ { "info": { "name": "List Blueprints", "type": "http" }, "http": { "method": "GET", "url": "https://api.rely.io/api/v1/blueprints" }, "docs": "Retrieve all blueprint schemas defined in the organization's developer portal. Blueprints define the structure, properties, and relations for catalog entity types." }, { "info": { "name": "Create Blueprint", "type": "http" }, "http": { "method": "POST", "url": "https://api.rely.io/api/v1/blueprints", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new blueprint schema defining a type of catalog entity. Blueprints use an OpenAPI 3-compatible JSON descriptor with Rely.io-specific extensions for properties and relations." }, { "info": { "name": "Get Blueprint", "type": "http" }, "http": { "method": "GET", "url": "https://api.rely.io/api/v1/blueprints/:blueprintId", "params": [ { "name": "blueprintId", "value": "", "type": "path", "description": "Unique identifier of the blueprint" } ] }, "docs": "Retrieve a specific blueprint schema by its identifier." }, { "info": { "name": "Update Blueprint", "type": "http" }, "http": { "method": "PUT", "url": "https://api.rely.io/api/v1/blueprints/:blueprintId", "params": [ { "name": "blueprintId", "value": "", "type": "path", "description": "Unique identifier of the blueprint" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update an existing blueprint schema." }, { "info": { "name": "Delete Blueprint", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.rely.io/api/v1/blueprints/:blueprintId", "params": [ { "name": "blueprintId", "value": "", "type": "path", "description": "Unique identifier of the blueprint" } ] }, "docs": "Delete a blueprint schema. All entities of this blueprint type must be deleted first." } ] } ], "bundled": true }