action alertersystem_api_team_invitation_id_get { label: "Retrieves a TeamInvitation resource." description: "Retrieves a TeamInvitation resource." provider: alertersystem method: GET path: "/api/team-invitation/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "The TeamInvitation resource is a collection of invitations that have been sent to people to become team members of partitions." required: ["inviteeEmail", "inviteeFirstName", "inviteeLastName", "partition"] properties: { createdAt: { type: "string" format: "date-time" description: "When the resource instance was created. This date-time is in the UTC timezone." } dataSegmentCode: { type: "string" description: "User-provided string on which to segment and filter data. Max 50 characters." } id: { type: "string" format: "uuid" description: "The unique identifier of the resource instance." } inviteeEmail: { type: "string" format: "email" description: "The email address of the person that is being invited." } inviteeFirstName: { type: "string" description: "The first name of the person that is being invited." } inviteeLastName: { type: "string" description: "The last name of the person that is being invited." } partition: { type: "string" format: "iri-reference" description: "The partition that contains this resource instance. The resource cannot be moved to another partition." } resourceOwner: { type: "string" description: "The name of the person who owns this resource." } statusAt: { type: "string" format: "date-time" description: "When the current status too effect. This date-time is in the UTC timezone. " } teamInvitationStatus: { type: "string" description: "The current status of the invitation." } teamMemberRoleCode: { type: "string" format: "iri-reference" description: "The role of the team member on the team." } } } }