{ "opencollection": "1.0.0", "info": { "name": "Autodesk Flow Graph Engine API", "version": "1.0.0" }, "request": { "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "https://developer.api.autodesk.com/authentication/v2/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Graphs", "type": "folder" }, "items": [ { "info": { "name": "Autodesk List Graphs", "type": "http" }, "http": { "method": "GET", "url": "https://developer.api.autodesk.com/fge/v1/graphs", "params": [ { "name": "limit", "value": "", "type": "query" }, { "name": "offset", "value": "", "type": "query" } ] }, "docs": "Returns a list of uploaded Bifrost graphs available for evaluation." }, { "info": { "name": "Autodesk Upload Graph", "type": "http" }, "http": { "method": "POST", "url": "https://developer.api.autodesk.com/fge/v1/graphs", "body": { "type": "multipart-form", "data": [ { "name": "file", "type": "text", "value": "" }, { "name": "name", "type": "text", "value": "" }, { "name": "description", "type": "text", "value": "" } ] } }, "docs": "Uploads a Bifrost graph file (.bif) for cloud evaluation." }, { "info": { "name": "Autodesk Get Graph", "type": "http" }, "http": { "method": "GET", "url": "https://developer.api.autodesk.com/fge/v1/graphs/:graphId", "params": [ { "name": "graphId", "value": "", "type": "path" } ] }, "docs": "Returns details of a specific graph." }, { "info": { "name": "Autodesk Delete Graph", "type": "http" }, "http": { "method": "DELETE", "url": "https://developer.api.autodesk.com/fge/v1/graphs/:graphId", "params": [ { "name": "graphId", "value": "", "type": "path" } ] }, "docs": "Deletes an uploaded graph." } ] }, { "info": { "name": "Jobs", "type": "folder" }, "items": [ { "info": { "name": "Autodesk List Jobs", "type": "http" }, "http": { "method": "GET", "url": "https://developer.api.autodesk.com/fge/v1/jobs", "params": [ { "name": "filter[status]", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" }, { "name": "offset", "value": "", "type": "query" } ] }, "docs": "Returns a list of graph evaluation jobs." }, { "info": { "name": "Autodesk Create Job", "type": "http" }, "http": { "method": "POST", "url": "https://developer.api.autodesk.com/fge/v1/jobs", "body": { "type": "json", "data": "{}" } }, "docs": "Creates and queues a new graph evaluation job. Specify the graph to evaluate and input parameters." }, { "info": { "name": "Autodesk Get Job", "type": "http" }, "http": { "method": "GET", "url": "https://developer.api.autodesk.com/fge/v1/jobs/:jobId", "params": [ { "name": "jobId", "value": "", "type": "path" } ] }, "docs": "Returns the status and details of a specific job." }, { "info": { "name": "Autodesk Cancel Job", "type": "http" }, "http": { "method": "DELETE", "url": "https://developer.api.autodesk.com/fge/v1/jobs/:jobId", "params": [ { "name": "jobId", "value": "", "type": "path" } ] }, "docs": "Cancels a queued or running job." }, { "info": { "name": "Autodesk Get Job Result", "type": "http" }, "http": { "method": "GET", "url": "https://developer.api.autodesk.com/fge/v1/jobs/:jobId/result", "params": [ { "name": "jobId", "value": "", "type": "path" } ] }, "docs": "Returns the output/result of a completed graph evaluation job." } ] } ], "bundled": true }