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