action box_get_invites_id { label: "Get user invite status" description: "Returns the status of a user invite." provider: box method: GET path: "/invites/{invite_id}" encoding: json input: { type: "object" properties: { fields: { type: "array" items: { type: "string" } } invite_id: { type: "string" } } required: ["invite_id"] additionalProperties: false } output: { type: "object" description: "An invite for a user to an enterprise." properties: { actionable_by: { type: "object" description: "A mini representation of a user, as can be returned when nested within other\nresources." required: ["login", "name"] } created_at: { type: "string" format: "date-time" description: "When the invite was created" } id: { type: "string" description: "The unique identifier for this invite" } invited_by: { type: "object" additionalProperties: true } invited_to: { type: "object" description: "A representation of a Box enterprise" properties: { id: { type: "string" description: "The unique identifier for this enterprise." } name: { type: "string" description: "The name of the enterprise" } type: { type: "string" description: "`enterprise`" enum: ["enterprise"] } } } modified_at: { type: "string" format: "date-time" description: "When the invite was modified." } status: { type: "string" description: "The status of the invite" } type: { type: "string" description: "`invite`" enum: ["invite"] } } } }