action svix_expire_all_api_v1_auth_app_app_id_expire_all_post { label: "Expire All" description: "Expire all of the tokens associated with a specific Application" provider: svix method: POST path: "/api/v1/auth/app/{app_id}/expire-all/" encoding: json input: { type: "object" properties: { app_id: { type: "string" description: "The application's ID or UID" } expiry: { type: "integer" description: "How many seconds until the old key is expired." } "idempotency-key": { type: "string" description: "The request's idempotency key" } } required: ["app_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }