## List members `GET https://getkollek.com/api/account/members` Retrieve the people who have access to the account, together with the role each one holds. **Permissions:** Owners only. Editors and viewers get a 404 response. ### Query parameters - `per_page` (integer, optional): The number of members to return per page, between 1 and 100. Default: `10`. - `page` (integer, optional): The page number to return. Default: `1`. **Returns:** A paginated list of member objects. ### Example request ```bash curl https://getkollek.com/api/account/members \ -H "Authorization: Bearer $API_KEY" \ -H "Accept: application/json" ``` ### Example response `Status: 200` ```json { "data": [ { "type": "member", "id": "1", "attributes": { "first_name": "Rachel", "last_name": "Green", "nickname": null, "email": "rachel@centralperk.test", "role": "owner", "created_at": 1752537600, "updated_at": 1752537600 }, "links": { "self": "https://getkollek.com/api/account/members/1" } }, { "type": "member", "id": "2", "attributes": { "first_name": "Chandler", "last_name": "Bing", "nickname": null, "email": "chandler@centralperk.test", "role": "editor", "created_at": 1752537600, "updated_at": 1752537600 }, "links": { "self": "https://getkollek.com/api/account/members/2" } } ], "links": { "first": "https://getkollek.com/api/account/members?page=1", "last": "https://getkollek.com/api/account/members?page=1", "prev": null, "next": null }, "meta": { "current_page": 1, "from": 1, "last_page": 1, "links": [ { "url": null, "label": "« Previous", "active": false }, { "url": "https://getkollek.com/api/account/members?page=1", "label": "1", "active": true }, { "url": null, "label": "Next »", "active": false } ], "path": "https://getkollek.com/api/account/members", "per_page": 10, "to": 2, "total": 2 } } ```