SendStreak logo
menu

List account members and invitations

Lists everyone with access to the account in one collection: active team members and pending invitations. Pending entries carry status pending until the invitee signs up.

Endpoint

GET https://api.sendstreak.com/v2/accounts/{accountId}/users

All v2 endpoints require a bearer token - see Authentication.

Path parameters

Parameter Type Description
accountId string The account the request is scoped to.

Response

Members and pending invitations.

{
  "start": 0,
  "limit": 25,
  "items": [
    {
      "email": "[email protected]",
      "name": "Example name",
      "status": "active",
      "validated": false
    }
  ]
}

Errors

Status Description
401 Missing or invalid token, or the token is not authorized for this account/user.

See Errors and rate limits for what error responses look like.

Curl example

curl --location --request GET 'https://api.sendstreak.com/v2/accounts/YOUR_ACCOUNT_ID/users' \
--header 'Authorization: Bearer YOUR_API_TOKEN'
Try SendStreak for Free now!