link_account_msg
Key | Type | Description | Required |
---|---|---|---|
header | object | This object is required in every call. The information it includes is used to verify the signature. | true |
message | string | This tag specifies the JSON schema object to validate against. For this call, use link_account_msg . | false |
plaid_token | string | This is the public token returned in the onSuccess function of a Plaid Link session, or a processor token if using your own Plaid integration. | true |
account_name | string | This is the name given to the linked account. If omitted, it is "default". | false |
selected_account_id | string | If one account is selected through Plaid Link, the ID found in the selected accounts array can be passed in here. If this is omitted, the endpoint will choose the first checking account it finds at the end-user's bank. | false |
provider_token | string | Must be either Plaid's processor-xxx-xxx or MX's authorization_code-xxx-xxx | true |
provider_token_type | Must match "processor" | true | |
provider | Must be either "Plaid" or "MX" | true |
The plaid_token and plaid_token_type parameters have been deprecated and are only used prior to SDK version 0.2.49; however, they are still supported for backwards compatibility.
Used By Endpoints:
- /link_account
Note - We recently renamed the field auth_handle
to app_handle
. For backward compatibility, auth_handle
is still valid but has been removed from our documentation.
{
"header": {
"created": 1234567890,
"app_handle": "app_handle",
"user_handle":"user_handle",
"version": "0.2",
"reference": "<your unique id>"
},
***Link Account with Plaid
// See https://docs.silamoney.com/docs/link_account for specs
***Link Account with MX
// See https://docs.silamoney.com/docs/link_account for specs
Updated about 2 months ago