curl --request POST \
--url https://api.example.com/v1/ui/providers/invitations \
--header 'Content-Type: application/json' \
--data '
{
"emails": [
"jsmith@example.com"
],
"roles": [
"<string>"
]
}
'Creates invitations for multiple users to join the provider. Sends invitation emails and stores invitation records.
curl --request POST \
--url https://api.example.com/v1/ui/providers/invitations \
--header 'Content-Type: application/json' \
--data '
{
"emails": [
"jsmith@example.com"
],
"roles": [
"<string>"
]
}
'