{ "opencollection": "1.0.0", "info": { "name": "Wodify Classes Workouts API", "version": "1.0" }, "request": { "auth": { "type": "apikey", "key": "x-api-key", "value": "{{x-api-key}}", "placement": "header" } }, "items": [ { "info": { "name": "Workouts", "type": "folder" }, "items": [ { "info": { "name": "Get workouts", "type": "http" }, "http": { "method": "GET", "url": "https://api.wodify.com/v1/workouts", "params": [ { "name": "sort", "value": "", "type": "query", "description": "Specifies the order in which the list will be returned." }, { "name": "page", "value": "", "type": "query", "description": "Specifies the page of records to be returned. Defaults to 1." }, { "name": "page_size", "value": "", "type": "query", "description": "Number of records to return per page. Maximum and default are 100." } ] }, "docs": "Returns a paged list of workouts (WODs)." }, { "info": { "name": "Create workout", "type": "http" }, "http": { "method": "POST", "url": "https://api.wodify.com/v1/workouts", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new workout." }, { "info": { "name": "Get workout", "type": "http" }, "http": { "method": "GET", "url": "https://api.wodify.com/v1/workouts/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique identifier of the resource." } ] }, "docs": "Retrieves a single workout by ID." }, { "info": { "name": "Update workout", "type": "http" }, "http": { "method": "PUT", "url": "https://api.wodify.com/v1/workouts/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique identifier of the resource." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates an existing workout." }, { "info": { "name": "Delete workout", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.wodify.com/v1/workouts/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique identifier of the resource." } ] }, "docs": "Deletes a workout." } ] } ], "bundled": true }