action plaid_payment_initiation_recipient_get { label: "Get payment recipient" description: "Get details about a payment recipient you have previously created." provider: plaid method: POST path: "/payment_initiation/recipient/get" encoding: json input: { type: "object" description: "PaymentInitiationRecipientGetRequest defines the request schema for `/payment_initiation/recipient/get`" required: ["recipient_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." } recipient_id: { type: "string" description: "The ID of the recipient" } 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: "PaymentInitiationRecipientGetResponse defines the response schema for `/payment_initiation/recipient/get`" required: ["name", "recipient_id", "request_id"] type: "object" } }