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