{ "opencollection": "1.0.0", "info": { "name": "Terminal Shop Address Subscription API", "version": "1.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Subscription", "type": "folder" }, "items": [ { "info": { "name": "List subscriptions", "type": "http" }, "http": { "method": "GET", "url": "https://api.terminal.shop/subscription" }, "docs": "List the subscriptions associated with the current user." }, { "info": { "name": "Create subscription", "type": "http" }, "http": { "method": "POST", "url": "https://api.terminal.shop/subscription", "body": { "type": "json", "data": "{}" } }, "docs": "Create a subscription for the current user." }, { "info": { "name": "Get subscription", "type": "http" }, "http": { "method": "GET", "url": "https://api.terminal.shop/subscription/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Get the subscription with the given ID." }, { "info": { "name": "Update subscription", "type": "http" }, "http": { "method": "PUT", "url": "https://api.terminal.shop/subscription/:id", "params": [ { "name": "id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update the subscription with the given ID." }, { "info": { "name": "Cancel subscription", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.terminal.shop/subscription/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Cancel the subscription with the given ID." } ] } ], "bundled": true }