curl --request POST \
--url http://api.stuut.ai/v1/user-invites \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"invitations": [
{
"email": "[email protected]",
"as_admin": false
}
]
}
'[
{
"email": "<string>",
"object": "<string>",
"organization_id": "<string>",
"as_admin": true,
"created_at": "2023-11-07T05:31:56Z",
"invited_by_id": "<string>",
"is_accepted": true,
"modified_at": "2023-11-07T05:31:56Z",
"sent_at": "2023-11-07T05:31:56Z"
}
]curl --request POST \
--url http://api.stuut.ai/v1/user-invites \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"invitations": [
{
"email": "[email protected]",
"as_admin": false
}
]
}
'[
{
"email": "<string>",
"object": "<string>",
"organization_id": "<string>",
"as_admin": true,
"created_at": "2023-11-07T05:31:56Z",
"invited_by_id": "<string>",
"is_accepted": true,
"modified_at": "2023-11-07T05:31:56Z",
"sent_at": "2023-11-07T05:31:56Z"
}
]Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful response
2553232