{ "opencollection": "1.0.0", "info": { "name": "GoFundMe Pro E Card API", "version": "2.0.0" }, "request": { "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "/oauth2/auth", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "eCard", "type": "folder" }, "items": [ { "info": { "name": "listEcards", "type": "http" }, "http": { "method": "GET", "url": "https://pro.gofundme.com/api/2.0/campaigns/:campaign/ecards", "params": [ { "name": "campaign", "value": "", "type": "path", "description": "Primary identifier for specified Campaign" }, { "name": "page", "value": "", "type": "query", "description": "Indicator of which page of results to return" }, { "name": "per_page", "value": "", "type": "query", "description": "Number of entries to return in each page of results" } ] }, "docs": "Retrieves a list of all eCards made for the specified Campaign" }, { "info": { "name": "createEcard", "type": "http" }, "http": { "method": "POST", "url": "https://pro.gofundme.com/api/2.0/campaigns/:campaign/ecards", "params": [ { "name": "campaign", "value": "", "type": "path", "description": "Primary identifier for specified Campaign" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "oauth2", "flow": "resource_owner_password_credentials", "accessTokenUrl": "/oauth2/auth", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Create an eCard for a Campaign" }, { "info": { "name": "fetchEcard", "type": "http" }, "http": { "method": "GET", "url": "https://pro.gofundme.com/api/2.0/ecards/:ecard", "params": [ { "name": "ecard", "value": "", "type": "path", "description": "Primary identifier of eCard" } ] }, "docs": "Fetch specified eCard" }, { "info": { "name": "updateEcard", "type": "http" }, "http": { "method": "PUT", "url": "https://pro.gofundme.com/api/2.0/ecards/:ecard", "params": [ { "name": "ecard", "value": "", "type": "path", "description": "Primary identifier of eCard" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "oauth2", "flow": "resource_owner_password_credentials", "accessTokenUrl": "/oauth2/auth", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Update specified eCard" }, { "info": { "name": "deleteEcard", "type": "http" }, "http": { "method": "DELETE", "url": "https://pro.gofundme.com/api/2.0/ecards/:ecard", "params": [ { "name": "ecard", "value": "", "type": "path", "description": "Primary identifier of eCard" } ], "auth": { "type": "oauth2", "flow": "resource_owner_password_credentials", "accessTokenUrl": "/oauth2/auth", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Delete specified eCard" } ] } ], "bundled": true }