GET
/
projects
/
{project_id}
/
members
curl --request GET \
  --url https://api.beyondwords.io/v1/projects/{project_id}/members \
  --header 'X-Api-Key: <api-key>'
[
  {
    "id": 0,
    "first_name": "James",
    "last_name": "Bond",
    "email": "james@example.com",
    "role": {
      "id": 1,
      "name": "Admin",
      "key": "admin"
    },
    "pending": false,
    "avatar_url": "https://example.com/avatar.jpg",
    "created": "2019-12-09 22:18:26 UTC",
    "updated": "2020-01-23 08:55:38 UTC"
  }
]

Authorizations

X-Api-Key
string
header
required

Path Parameters

project_id
string
required

The numeric ID of your project

Query Parameters

pagination[limit]
integer

'limit' sets the number of results to return in each page.

pagination[offset]
integer

'offset' sets the first position to return from the results of the query. The default is 0, which starts the page at the first result.

filter[name]
string

filter by name

Response

200
application/json
OK
id
integer

Unique identifier for the object

first_name
string

The member’s first name

last_name
string | null

The member’s last name

email
string

The member's email

role
object | null
email_confirmed
boolean

Whether or not the member has accepted their invitation to the organization. Has the value true after the member has validated their organization using an email link. The default is false.

marketing_subscribed
boolean

Whether the user is subscribed to marketing emails.

avatar_url
string | null

The member's avatar url

created
string

Time at which the object was created (ISO 8601)

updated
string

Time at which the object was updated (ISO 8601)