Members
Invite a Member
POST
/
members
Copy
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"
}'
Copy
{
"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
.
Copy
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"
}'
Copy
{
"email": "john.smith@goteal.co",
"role": "Owner",
"name": "John Smith",
"status": "unconfirmed",
"mfa_status": "sms"
}
Assistant
Responses are generated using AI and may contain mistakes.