curl --request POST \
--url https://api.wapikit.com/api/organization/invites \
--header 'Content-Type: application/json' \
--data '{
"email": "<string>",
"accessLevel": "Owner"
}'
{
"invite": {
"uniqueId": "<string>",
"email": "<string>",
"accessLevel": "Owner",
"createdAt": "2023-11-07T05:31:56Z",
"status": "Pending",
"organizationName": "<string>"
}
}
create a new organization invite
curl --request POST \
--url https://api.wapikit.com/api/organization/invites \
--header 'Content-Type: application/json' \
--data '{
"email": "<string>",
"accessLevel": "Owner"
}'
{
"invite": {
"uniqueId": "<string>",
"email": "<string>",
"accessLevel": "Owner",
"createdAt": "2023-11-07T05:31:56Z",
"status": "Pending",
"organizationName": "<string>"
}
}
new organization invite info
The body is of type object
.
invite object
The response is of type object
.
Was this page helpful?