POST
/
organization
/
invites
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>"
  }
}

Body

application/json

new organization invite info

The body is of type object.

Response

200
application/json

invite object

The response is of type object.