OrganizationInvitationedit

An invitation to an organization

Propertiesedit

accepted_at (string as date-time)
The date and time when the invitation was accepted
created_at (string as date-time, required)
The date and time when the invitation was created
email (string, required)
The email address to invite to the organization
expired (boolean, required)
True if the invitation is expired
expires_at (string as date-time, required)
The date and time when the invitation expires
organization (Organization, required)
The organization associated with this invitation
token (string, required)
The token used to accept the invitation

Exampleedit

{
   "accepted_at" : "2019-01-01T00:00:00Z",
   "created_at" : "2019-01-01T00:00:00Z",
   "email" : "string",
   "expired" : true,
   "expires_at" : "2019-01-01T00:00:00Z",
   "organization" : {
      "id" : "string",
      "name" : "string"
   },
   "token" : "string"
}