{ "opencollection": "1.0.0", "info": { "name": "Skilljar Assets Paths API", "version": "1.0.0" }, "items": [ { "info": { "name": "Paths", "type": "folder" }, "items": [ { "info": { "name": "paths_list", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/v1/paths", "params": [ { "name": "page", "value": "", "type": "query", "description": "A page number within the paginated result set." } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Retrieve a paginated list of Paths.\n\nReturns up to 100 Paths per page, filtered by the current organization.\nUse this endpoint to discover all available learning Paths." }, { "info": { "name": "paths_retrieve", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/v1/paths/:path_id", "params": [ { "name": "path_id", "value": "", "type": "path" } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Retrieve details for a specific Path.\n\nReturns all metadata and configuration for the requested Path, including its items and structure." }, { "info": { "name": "paths_update", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/v1/paths/:path_id", "params": [ { "name": "path_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Update an existing Path.\n\nAllows modification of Path metadata such as name, description, or status." }, { "info": { "name": "paths_partial_update", "type": "http" }, "http": { "method": "PATCH", "url": "{{baseUrl}}/v1/paths/:path_id", "params": [ { "name": "path_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Partially update an existing Path.\n\nAllows updating one or more fields of a Path without modifying the entire resource." }, { "info": { "name": "paths_destroy", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/v1/paths/:path_id", "params": [ { "name": "path_id", "value": "", "type": "path" } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Delete a Path.\n\nPermanently removes the Path and all associated items from your organization." } ] } ], "bundled": true }