action plaid_link_delivery_get { label: "Get Link Delivery session" description: "Use the `/link_delivery/get` endpoint to get the status of a Link Delivery session." provider: plaid method: POST path: "/link_delivery/get" encoding: json input: { type: "object" description: "LinkDeliveryGetRequest defines the request schema for `/link_delivery/get`" required: ["link_delivery_session_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." } link_delivery_session_id: { type: "string" description: "The ID for the Link Delivery session from a previous invocation of `/link_delivery/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: "LinkDeliveryGetRequest defines the response schema for `/link_delivery/get`" required: ["created_at", "request_id", "status"] properties: { access_tokens: { type: "array" description: "An array of access tokens associated with the Link Delivery session." items: { type: "string" description: "The access token associated with the Item data is being requested for." } } completed_at: { type: "string" format: "date-time" description: "Timestamp in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:mm:ssZ`) indicating the time the given Link Delivery Session was completed at." } created_at: { type: "string" format: "date-time" description: "Timestamp in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:mm:ssZ`) indicating the time the given Link Delivery Session was created at." } item_ids: { type: "array" description: "An array of `item_id`s associated with the Link Delivery session." items: { type: "string" description: "The `item_id` of the Item associated with this webhook, warning, or error" } } request_id: { type: "string" description: "A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive." } status: { type: "string" description: "The status of the given Link Delivery Session.\n\n`CREATED`: The session is created but not yet accessed by the user\n\n`OPENED`: The session is opened by the user but not yet completed\n\n`COMPLETED`: The session has been completed by the user\n\n`EXPIRED`: The session has expired" enum: ["CREATED", "OPENED", "COMPLETED", "EXPIRED"] } } } }