action plaid_credit_bank_income_pdf_get { label: "Retrieve information from the bank accounts used for income verification in PDF format" description: "`/credit/bank_income/pdf/get` returns the most recent bank income report for a specified user in PDF format." provider: plaid method: POST path: "/credit/bank_income/pdf/get" encoding: json input: { type: "object" description: "CreditBankIncomePDFGetRequest defines the request schema for `/credit/bank_income/pdf/get`" required: ["user_token"] properties: { client_id: { type: "string" description: "Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body." } secret: { type: "string" description: "Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body." } user_token: { type: "string" description: "The user token associated with the User data is being requested for." } } } output: { type: "object" additionalProperties: true } }