action anchore_list_user_credentials { label: "Get current credential summary" provider: anchore method: GET path: "/accounts/{accountname}/users/{username}/credentials" encoding: json input: { type: "object" properties: { accountname: { type: "string" } username: { type: "string" } } required: ["accountname", "username"] additionalProperties: false } output: { type: "array" items: { type: "object" description: "A login credential mapped to a user identity. For password credentials, the username to present for Basic auth is the user's username from the user record" required: ["type", "value"] properties: { created_at: { type: "string" description: "The timestamp of creation of the credential" } type: { type: "string" description: "The type of credential" enum: ["password"] } value: { type: "string" description: "The credential value (e.g. the password)" } } } } }