{ "opencollection": "1.0.0", "info": { "name": "OpenReplay Assist Jobs API", "version": "2.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Jobs", "type": "folder" }, "items": [ { "info": { "name": "List jobs", "type": "http" }, "http": { "method": "GET", "url": "https://api.openreplay.com/v2/public/:projectKey/jobs", "params": [ { "name": "projectKey", "value": "", "type": "path", "description": "Unique project key." }, { "name": "limit", "value": "", "type": "query" }, { "name": "page", "value": "", "type": "query" } ] }, "docs": "Retrieve all jobs for a project, including completed and cancelled ones. Paginated." }, { "info": { "name": "Get job", "type": "http" }, "http": { "method": "GET", "url": "https://api.openreplay.com/v2/public/:projectKey/jobs/:jobId", "params": [ { "name": "projectKey", "value": "", "type": "path", "description": "Unique project key." }, { "name": "jobId", "value": "", "type": "path" } ] }, "docs": "Return a job's status and metadata." }, { "info": { "name": "Cancel job", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.openreplay.com/v2/public/:projectKey/jobs/:jobId", "params": [ { "name": "projectKey", "value": "", "type": "path", "description": "Unique project key." }, { "name": "jobId", "value": "", "type": "path" } ] }, "docs": "Cancel a job that hasn't started yet or is still in progress." } ] } ], "bundled": true }