action id4i_get_default_queue { label: "getDefaultQueue" provider: id4i method: GET path: "/api/v1/organizations/{organizationId}/messaging" encoding: json input: { type: "object" properties: { organizationId: { type: "string" } } required: ["organizationId"] additionalProperties: false } output: { type: "object" required: ["active", "id"] properties: { active: { type: "boolean" } id: { type: "string" } waitingMessages: { type: "integer" format: "int64" description: "The count of queued messages" } } } }