{ "opencollection": "1.0.0", "info": { "name": "Creed achievements social-feed API", "version": "1.0.0" }, "items": [ { "info": { "name": "social-feed", "type": "folder" }, "items": [ { "info": { "name": "Get Friends Social Feed", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/social-feed/friends", "headers": [ { "name": "x-user-id", "value": "" } ], "params": [ { "name": "limit", "value": "", "type": "query" }, { "name": "offset", "value": "", "type": "query" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Return social feed events from the authenticated user's friends,\nordered by most recent first." }, { "info": { "name": "Get Church Social Feed", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/social-feed/church", "headers": [ { "name": "x-user-id", "value": "" } ], "params": [ { "name": "limit", "value": "", "type": "query" }, { "name": "offset", "value": "", "type": "query" }, { "name": "church_id", "value": "", "type": "query" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Return social feed events from all members of a church, ordered by most recent\nfirst. If `church_id` is provided, return events for that church; otherwise fall\nback to the authenticated user's home church." } ] } ], "bundled": true }