curl --request POST \
--url https://api.example.com/api/v1/projects/{project_id}/users/invite \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"FirstName": "<string>",
"LastName": "<string>",
"Email": "jsmith@example.com",
"PhoneNumber": "<string>",
"Role": "ADMIN",
"Status": "ACTIVE"
}
'