action httpbin_get_digest_auth_qop_user_passwd { label: "Prompts the user for authorization using Digest Auth." provider: httpbin method: GET path: "/digest-auth/{qop}/{user}/{passwd}" encoding: json input: { type: "object" properties: { passwd: { type: "string" } qop: { type: "string" } user: { type: "string" } } required: ["passwd", "qop", "user"] additionalProperties: false } output: { type: "object" additionalProperties: true } }