action plaid_dashboard_user_list { label: "List dashboard users" description: "List all dashboard users associated with your account." provider: plaid method: POST path: "/dashboard_user/list" encoding: json input: { type: "object" description: "Request input for listing dashboard users" 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." } cursor: { type: "string" description: "An identifier that determines which page of results you receive." } 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: "Paginated list of dashboard users" required: ["dashboard_users", "next_cursor", "request_id"] properties: { dashboard_users: { type: "array" description: "List of dashboard users" items: { type: "object" description: "Account information associated with a team member with access to the Plaid dashboard." required: ["id", "created_at", "email_address", "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." } status: { type: "string" description: "The current status of the user." enum: ["invited", "active", "deactivated"] } } } } next_cursor: { type: "string" description: "An identifier that determines which page of results you receive." } 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." } } } }