{ "opencollection": "1.0.0", "info": { "name": "Paddle Addresses API", "version": "1.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Addresses", "type": "folder" }, "items": [ { "info": { "name": "List addresses for a customer", "type": "http" }, "http": { "method": "GET", "url": "https://api.paddle.com/customers/:customer_id/addresses", "params": [ { "name": "customer_id", "value": "", "type": "path" } ] }, "docs": "List addresses for a customer" }, { "info": { "name": "Create an address for a customer", "type": "http" }, "http": { "method": "POST", "url": "https://api.paddle.com/customers/:customer_id/addresses", "params": [ { "name": "customer_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Create an address for a customer" }, { "info": { "name": "Get an address for a customer", "type": "http" }, "http": { "method": "GET", "url": "https://api.paddle.com/customers/:customer_id/addresses/:address_id", "params": [ { "name": "customer_id", "value": "", "type": "path" }, { "name": "address_id", "value": "", "type": "path" } ] }, "docs": "Get an address for a customer" }, { "info": { "name": "Update an address for a customer", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.paddle.com/customers/:customer_id/addresses/:address_id", "params": [ { "name": "customer_id", "value": "", "type": "path" }, { "name": "address_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update an address for a customer" } ] } ], "bundled": true }