action sinao_app_policies_invitations_list { label: "List invitations" description: "Get all sent invitations" provider: sinao method: GET path: "/apps/{appId}/access/invite" encoding: json output: { type: "array" items: { type: "object" properties: { app: { type: "object" properties: { admin: { type: "object" } config: { type: "array" items: { type: "object" } } hostname_alias: { type: "string" format: "hostname" description: "Specific hostname for this app. To use default URI, null this param" } id: { type: "integer" } last_access_at: { type: "string" format: "date-time" } last_user: { type: "object" additionalProperties: true } organization: { type: "object" } policies: { type: "array" items: { type: "object" properties: { app: { type: "object" additionalProperties: true } policy_profile: { type: "object" properties: { description: { type: "string" } homepage: { type: "string" format: "uri" } name: { type: "string" } restricted: { type: "boolean" } rights: { type: "array" description: "Routes list" items: { type: "string" } } visible: { type: "integer" } } } user: { type: "object" additionalProperties: true } } } } subscription: { type: "object" properties: { access_level: { type: "string" enum: ["full", "start", "pro", "restricted"] } id: { type: "integer" } payment_card: { type: "string" } payment_failed_count: { type: "integer" } period_ending_date: { type: "string" format: "date-time" } period_remaining_days: { type: "integer" } period_starting_date: { type: "string" format: "date-time" } plan_color: { type: "string" } plan_name: { type: "string" } status: { type: "string" } stripe_customer_id: { type: "string" } stripe_plan_id: { type: "string" } stripe_subscription_id: { type: "string" } } } url: { type: "string" format: "uri" description: "URI to this app. Can be overwrited by hostname_alias param" } } } id: { type: "integer" } profile: { type: "object" additionalProperties: true } recipient_user: { type: "object" additionalProperties: true } sender_user: { type: "object" additionalProperties: true } used_at: { type: "string" format: "date-time" } validity: { type: "string" format: "date-time" } } } } }