action plaid_item_application_list { label: "List a user’s connected applications" description: "List a user’s connected applications" provider: plaid method: POST path: "/item/application/list" encoding: json input: { type: "object" description: "Request to list connected applications for a user." properties: { access_token: { type: "string" description: "The access token associated with the Item data is being requested for." } 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." } } } output: { type: "object" description: "Describes the connected application for a particular end user." required: ["applications"] properties: { applications: { type: "array" description: "A list of connected applications." items: { type: "object" description: "Describes the connected application for a particular end user." required: ["application_id", "name", "created_at"] properties: { application_id: { type: "string" description: "This field will map to the application ID that is returned from /item/applications/list, or provided to the institution in an oauth redirect." } application_url: { type: "string" description: "The URL for the application's website" } created_at: { type: "string" format: "date" description: "The date this application was linked in [ISO 8601](https://wikipedia.org/wiki/ISO_8601) (YYYY-MM-DD) format in UTC." } display_name: { type: "string" description: "A human-readable name of the application for display purposes" } logo_url: { type: "string" description: "A URL that links to the application logo image." } name: { type: "string" description: "The name of the application" } reason_for_access: { type: "string" description: "A string provided by the connected app stating why they use their respective enabled products." } scopes: { description: "The scopes object" type: "object" } } } } 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." } } } }