action id4i_patch_default_queue { label: "patchDefaultQueue" provider: id4i method: PATCH path: "/api/v1/organizations/{organizationId}/messaging" encoding: json input: { type: "object" properties: { active: { type: "boolean" description: "If this value is set to false the queue will be deleted." } id: { type: "string" } organizationId: { type: "string" } purgeQueue: { type: "boolean" description: "Set this value to true if you want to purge the queue." } } required: ["organizationId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }