Create grant token
Create a token for initializing a Link session
- application/json
Request Body
- scopes integer required
List of bankHub product(s) you wish to use.
- redirectUri string required
A URI indicating the destination where a user should be forwarded after completing the Link flow; used to support OAuth authentication flows when launching Link in the browser or via a webview. The redirectUri should not contain any query parameters. When used in Production or Development, must be an https URI. Note that any redirect URI must also be added to the Allowed redirect URIs list in the developer console.
- fiServiceId string
Financial institution’s service identifier
- language string
The language that Link should be displayed in.
Responses
- 200
- 401
- 403
Success
- application/json
- Schema
- Example (from schema)
Schema
- grantToken string
Grant token
- expiration string
The expiration date for the grantToken, in ISO 8601 format
{
"grantToken": "string",
"expiration": "string"
}
Unauthorized
Permission denied.
Loading...