The invite object

Represents an individual invite to the organization.source

The object type, which is always organization.invitesource

The identifier, which can be referenced in API endpointssource

The email address of the individual to whom the invite was sentsource

owner or readersource

accepted,expired, or pendingsource

The Unix timestamp (in seconds) of when the invite was sent.source

The Unix timestamp (in seconds) of when the invite expires.source

The Unix timestamp (in seconds) of when the invite was accepted.source

OBJECT The invite object
1
2
3
4
5
6
7
8
9
10
{
  "object": "organization.invite",
  "id": "invite-abc",
  "email": "user@example.com",
  "role": "owner",
  "status": "accepted",
  "invited_at": 1711471533,
  "expires_at": 1711471533,
  "accepted_at": 1711471533
}