Members
Invite a Member
POST
/
members
curl --request POST \
--url https://api.sandbox.goteal.co/members \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '{
"email": "john.smith@goteal.co",
"role": "FullMember"
}'
{
"email": "john.smith@goteal.co",
"role": "Owner",
"name": "John Smith",
"status": "unconfirmed",
"mfa_status": "sms"
}
Authorizations
Body
application/json
Response
201
application/json
Created
The response is of type object
.
curl --request POST \
--url https://api.sandbox.goteal.co/members \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '{
"email": "john.smith@goteal.co",
"role": "FullMember"
}'
{
"email": "john.smith@goteal.co",
"role": "Owner",
"name": "John Smith",
"status": "unconfirmed",
"mfa_status": "sms"
}