action bunq_list_all_ip_for_user_credential_password_ip { description: "Manage the IPs which may be used for a credential of a user for server authentication." provider: bunq method: GET path: "/user/{userID}/credential-password-ip/{credential-password-ipID}/ip" encoding: json input: { type: "object" properties: { "credential-password-ipID": { type: "integer" } userID: { type: "integer" } } required: ["credential-password-ipID", "userID"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { ip: { type: "string" description: "The IP address." } status: { type: "string" description: "The status of the IP. May be \"ACTIVE\" or \"INACTIVE\". It is only possible to make requests from \"ACTIVE\" IP addresses. Only \"ACTIVE\" IPs will be billed." } } } } }