action plaid_payment_initiation_consent_get { label: "Get payment consent" description: "The `/payment_initiation/consent/get` endpoint can be used to check the status of a payment consent, as well as to receive basic information such as recipient and constraints." provider: plaid method: POST path: "/payment_initiation/consent/get" encoding: json input: { type: "object" description: "PaymentInitiationConsentGetRequest defines the request schema for `/payment_initiation/consent/get`" required: ["consent_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." } consent_id: { type: "string" description: "The `consent_id` returned from `/payment_initiation/consent/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: { type: "object" description: "PaymentInitiationConsentGetResponse defines the response schema for `/payment_initation/consent/get`" required: ["request_id"] } }