action bunq_list_all_credential_password_ip_for_user { description: "Create a credential of a user for server authentication, or delete the credential of a user for server authentication." provider: bunq method: GET path: "/user/{userID}/credential-password-ip" encoding: json input: { type: "object" properties: { userID: { type: "integer" } } required: ["userID"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { created: { type: "string" description: "The timestamp of the credential object's creation." } expiry_time: { type: "string" description: "When the status is PENDING_FIRST_USE: when the credential expires." } id: { type: "integer" description: "The id of the credential." } permitted_device: { type: "object" properties: { description: { type: "string" description: "The description of the device that may use the credential." } ip: { type: "string" description: "The IP address of the device that may use the credential." } } } status: { type: "string" description: "The status of the credential." } token_value: { type: "string" description: "When the status is PENDING_FIRST_USE: the value of the token." } updated: { type: "string" description: "The timestamp of the credential object's last update." } } } } }