{ "opencollection": "1.0.0", "info": { "name": "Admin Account / Address Shipping Categories API", "version": "v3" }, "items": [ { "info": { "name": "Shipping Categories", "type": "folder" }, "items": [ { "info": { "name": "Return a list of Shipping Categories", "type": "http" }, "http": { "method": "GET", "url": "http://{defaultHost}/api/v2/platform/shipping_categories", "params": [ { "name": "page", "value": "1", "type": "query" }, { "name": "per_page", "value": "50", "type": "query" }, { "name": "filter[name_i_cont]", "value": "default", "type": "query" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Returns a list of Shipping Categories" }, { "info": { "name": "Create a Shipping Category", "type": "http" }, "http": { "method": "POST", "url": "http://{defaultHost}/api/v2/platform/shipping_categories", "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Creates a Shipping Category" }, { "info": { "name": "Return a Shipping Category", "type": "http" }, "http": { "method": "GET", "url": "http://{defaultHost}/api/v2/platform/shipping_categories/:id", "params": [ { "name": "id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Returns a Shipping Category" }, { "info": { "name": "Update a Shipping Category", "type": "http" }, "http": { "method": "PATCH", "url": "http://{defaultHost}/api/v2/platform/shipping_categories/:id", "params": [ { "name": "id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Updates a Shipping Category" }, { "info": { "name": "Delete a Shipping Category", "type": "http" }, "http": { "method": "DELETE", "url": "http://{defaultHost}/api/v2/platform/shipping_categories/:id", "params": [ { "name": "id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Deletes a Shipping Category" } ] } ], "bundled": true }