Authorized User Resources
The following resources are used in the Authorized Users API:
AuthorizedUser
The AuthorizedUser type represents an individual that has full access to a Customer's financials and can authenticate on behalf of the customer.
email
string
The authorized user's email address.
phone
The authorized user's phone number. This number will be used for One Time Password (OTP) authentication.
canConnectWithAuthVendorOptional
boolean
Optional. Default is
true. When set to false, the authorized user cannot authenticate through exchange networks such as Plaid. See Plaid Exchange for more information.Example AuthorizedUser:
{
"fullName": {
"first": "Richard",
"last": "Hendricks"
},
"email": "richard@piedpiper.com",
"phone": {
"countryCode": "1",
"number": "5555555555"
},
"canConnectWithAuthVendor": true
}
Related Resources
| Resource | Description |
|---|---|
| BusinessCustomer | Business customer that may have authorized users |
| IndividualCustomer | Individual customer that may have authorized users |
| TrustCustomer | Trust customer that may have authorized users |