GET
/organization/invites/{invite_id}
curl \
--request GET 'https://api.openai.com/v1/organization/invites/{invite_id}' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"object": "organization.invite",
"id": "string",
"email": "string",
"role": "owner",
"status": "accepted",
"invited_at": 42,
"expires_at": 42,
"accepted_at": 42,
"projects": [
{
"id": "string",
"role": "member"
}
]
}