curl --location --request POST 'https://api.openai.com/v1/organization/invites' \
--header 'Authorization: Bearer $OPENAI_ADMIN_KEY' \
--header 'Content-Type: application/json' \
--data-raw '{
"email": "user@example.com",
"role": "owner"
}'
{}