OBJECT

OrganizationInviteActionAudit

link GraphQL Schema definition

1type OrganizationInviteActionAudit {
2
3# Type of action performed on the invite
4action: OrganizationInviteAction!
5
6# Status at the time of the action
7priorStatus: OrganizationInviteStatus!
8
9# UserId or orgId used to perform the action
10actor: String!
11
12# Timestamp of the action
13timestamp: DateTime!
14
15}