action bunq_list_all_certificate_pinned_for_user { description: "List all the pinned certificate chain for the given user." provider: bunq method: GET path: "/user/{userID}/certificate-pinned" encoding: json input: { type: "object" properties: { userID: { type: "integer" } } required: ["userID"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { certificate_chain: { type: "string" description: "The certificate chain in .PEM format. Certificates are glued with newline characters." } id: { type: "integer" description: "The id generated for the pinned certificate chain." } } } } }