GET
/
members
/
{member_id}
curl --request GET \
  --url https://api.sandbox.goteal.co/members/{member_id} \
  --header 'X-API-KEY: <api-key>'
{
  "email": "john.smith@goteal.co",
  "role": "Owner",
  "name": "John Smith",
  "status": "unconfirmed",
  "mfa_status": "sms"
}

Authorizations

X-API-KEY
string
header
required

Path Parameters

member_id
string
required

ID of the Member to get

Response

201
application/json
Created
email
string
required
Example:

"john.smith@goteal.co"

role
string
required

The Role of the Member

Example:

"Owner"

status
enum<string>
required

the status of the Member

Available options:
unconfirmed,
confirmed,
archived,
compromised,
unknown,
reset_required,
force_change_password,
external_provider
Example:

"unconfirmed"

mfa_status
enum<string>
required

the status of the Member

Available options:
sms,
email,
disabled
Example:

"sms"

name
string

Names of the Member

Example:

"John Smith"