{ "opencollection": "1.0.0", "info": { "name": "Terminal Shop Address API", "version": "1.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Address", "type": "folder" }, "items": [ { "info": { "name": "List addresses", "type": "http" }, "http": { "method": "GET", "url": "https://api.terminal.shop/address" }, "docs": "Get the shipping addresses associated with the current user." }, { "info": { "name": "Create address", "type": "http" }, "http": { "method": "POST", "url": "https://api.terminal.shop/address", "body": { "type": "json", "data": "{}" } }, "docs": "Create and add a shipping address to the current user." }, { "info": { "name": "Get address", "type": "http" }, "http": { "method": "GET", "url": "https://api.terminal.shop/address/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Get the shipping address with the given ID." }, { "info": { "name": "Delete address", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.terminal.shop/address/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Delete a shipping address from the current user." } ] } ], "bundled": true }