Brault Developers

List members

Centralapi.brault.appthis host is the same in every region
GET
/v1/members

Members of the brandspace with their role. Includes email — that is what the members:read scope buys.

AuthorizationBearer <token>

API key from Settings → Developers

In: header

Query Parameters

limit?number
Range1 <= value <= 100
Default50
cursor?string

Opaque cursor from a previous response.

Response Body

application/json

application/json

curl -X GET "https://example.com/v1/members"
{  "object": "list",  "has_more": true,  "next_cursor": "string",  "data": [    {      "object": "member",      "id": "string",      "name": "string",      "email": "string",      "avatar_url": "string",      "role": {        "id": "string",        "name": "string",        "slug": "admin"      },      "joined_at": "2019-08-24T14:15:22Z"    }  ]}