curl --request POST \
--url http://localhost:3333/v1/people/invite \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"invites": [
{
"email": "user@example.com",
"roles": [
"employee"
]
}
]
}
'curl --request POST \
--url http://localhost:3333/v1/people/invite \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"invites": [
{
"email": "user@example.com",
"roles": [
"employee"
]
}
]
}
'Was this page helpful?