embedVerificationService
Overview
This query takes credentials and, through Yodlee, produces tools to embed bank provider.
Special Considerations
- Input is not required
Inputs
QueryEmbedVerificationServiceArgs
Optional Data
VerificationId: string
Returns
Promise<EmbedVerificationServiceResult>
A promise containing the following object:
{
yodleeJwtToken,
fastLinkURL: this.getFastLinkURL(),
fastLinkParams: {
dataset: [{
name: 'ACCT_PROFILE',
attribute: [{
name: 'FULL_ACCT_NUMBER',
container: ['bank'],
}, {
name: 'BANK_TRANSFER_CODE',
container: ['bank'],
}, {
name: 'HOLDER_NAME',
container: ['bank'],
}],
}, {
name: 'BASIC_AGG_DATA',
attribute: [{
name: 'BASIC_ACCOUNT_INFO',
container: ['bank'],
}],
}],
}
}
Example
Running this mutation:
query {
embedVerificationService {
__typename
}
}
Gives us:
{
"data": {
"embedVerificationService": {
"__typename": "YodleeEmbedPayload"
}
}
}
Common Errors
N/A