action plaid_dashboard_user_get { label: "Retrieve a dashboard user" description: "Retrieve information about a dashboard user." provider: plaid method: POST path: "/dashboard_user/get" encoding: json input: { type: "object" description: "Request input for fetching a dashboard user" required: ["dashboard_user_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." } dashboard_user_id: { type: "string" description: "ID of the associated user." } 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: "Account information associated with a team member with access to the Plaid dashboard." required: ["created_at", "email_address", "id", "request_id", "status"] properties: { created_at: { type: "string" format: "date-time" description: "An ISO8601 formatted timestamp." } email_address: { type: "string" format: "email" description: "A valid email address." } id: { type: "string" description: "ID of the associated user." } 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 current status of the user." enum: ["invited", "active", "deactivated"] } } } }