action appcenter_invitations_sent { label: "invitations_sent" description: "Returns all invitations sent by the caller" provider: appcenter method: GET path: "/v0.1/invitations/sent" encoding: json output: { type: "array" items: { required: ["invitation_id"] properties: { app: { required: ["app_secret", "platform", "origin"] type: "object" } invitation_id: { type: "string" format: "uuid" description: "The id of the invitation" } organization: { required: ["id", "display_name", "name", "origin", "created_at", "updated_at"] properties: { avatar_url: { type: "string" description: "The URL to a user-uploaded Avatar image" } created_at: { type: "string" description: "The creation date of this organization" } display_name: { type: "string" description: "The display name of the organization" } id: { type: "string" format: "uuid" description: "The internal unique id (UUID) of the organization." } name: { type: "string" description: "The slug name of the organization" } origin: { type: "string" description: "The creation origin of this organization" enum: ["appcenter", "hockeyapp"] } updated_at: { type: "string" description: "The date the organization was last updated at" } } } } } } }