action httpbin_get_digest_auth_qop_user_passwd_algorithm_stale_after { label: "Prompts the user for authorization using Digest Auth + Algorithm." description: "allow settings the stale_after argument.\n" provider: httpbin method: GET path: "/digest-auth/{qop}/{user}/{passwd}/{algorithm}/{stale_after}" encoding: json input: { type: "object" properties: { algorithm: { type: "string" } passwd: { type: "string" } qop: { type: "string" } stale_after: { type: "string" } user: { type: "string" } } required: ["algorithm", "passwd", "qop", "stale_after", "user"] additionalProperties: false } output: { type: "object" additionalProperties: true } }