ユーザー招待のステータスを返します。
curl -i -X GET "https://api.box.com/2.0/invites/213723" \
-H "authorization: Bearer <ACCESS_TOKEN>"
await client.invites.getInviteById(invitation.id);
client.invites.get_invite_by_id(invitation.id)
await client.Invites.GetInviteByIdAsync(inviteId: invitation.Id);
{
"id": "11446498",
"type": "invite",
"actionable_by": {
"id": "11446498",
"type": "user",
"login": "ceo@example.com",
"name": "Aaron Levie"
},
"created_at": "2012-12-12T10:53:43-08:00",
"invited_by": {
"id": "11446498",
"type": "user",
"login": "ceo@example.com",
"name": "Aaron Levie"
},
"invited_to": {
"id": "11446498",
"type": "enterprise",
"name": "Acme Inc."
},
"modified_at": "2012-12-12T10:53:43-08:00",
"status": "pending"
}