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.
| Name | Type | Description |
|---|---|---|
| fullName | FullName | Full name of the authorized user. |
| string | The authorized user's email address. | |
| phone | Phone | The authorized user's phone number. This number will be used for One Time Password (OTP) authentication. |
| jwtSubject Optional | string | Optional. See this section for more information. |
| canConnectWithAuthVendor Optional | 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 |