{ "opencollection": "1.0.0", "info": { "name": "Donately Accounts People API", "version": "2019-03-15" }, "request": { "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "items": [ { "info": { "name": "People", "type": "folder" }, "items": [ { "info": { "name": "List people", "type": "http" }, "http": { "method": "GET", "url": "https://api.donately.com/v2/people", "params": [ { "name": "account_id", "value": "", "type": "query", "description": "The ID of the account to operate against." } ] }, "docs": "Returns the people (donors and contacts) for the specified account. MODELED - verify against the live reference." }, { "info": { "name": "Create a person", "type": "http" }, "http": { "method": "POST", "url": "https://api.donately.com/v2/people", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new person (donor/contact). MODELED - verify against the live reference." }, { "info": { "name": "Retrieve a person", "type": "http" }, "http": { "method": "GET", "url": "https://api.donately.com/v2/people/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique identifier of the resource." } ] }, "docs": "Retrieves a single person by ID. MODELED - verify against the live reference." }, { "info": { "name": "Update a person", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.donately.com/v2/people/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique identifier of the resource." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates an existing person. MODELED - verify against the live reference." } ] } ], "bundled": true }