action plaid_payment_initiation_payment_get { label: "Get payment details" description: "The `/payment_initiation/payment/get` endpoint can be used to check the status of a payment, as well as to receive basic information such as recipient and payment amount. In the case of standing orders, the `/payment_initiation/payment/get` endpoint will provide information about the status of the overall standing order itself; the API cannot be used to retrieve payment status for individual payments within a standing order." provider: plaid method: POST path: "/payment_initiation/payment/get" encoding: json input: { type: "object" description: "PaymentInitiationPaymentGetRequest defines the request schema for `/payment_initiation/payment/get`" required: ["payment_id"] 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." } payment_id: { type: "string" description: "The `payment_id` returned from `/payment_initiation/payment/create`." } 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." } } } output: { description: "PaymentInitiationPaymentGetResponse defines the response schema for `/payment_initation/payment/get`" required: ["amount", "bacs", "iban", "last_status_update", "payment_id", "recipient_id", "reference", "request_id", "status"] type: "object" } }