Argyle Link
Allow consumers to grant access to their payroll data by integrating Link into your app
Comprehensive data—minus the friction
Argyle Link is the front-end interface that allows consumers to grant your application access to their payroll data. Link provides a trustworthy, customizable, and guiding experience that makes it easy for your customers to make successful connections. Consumers simply locate their employer or payroll provider and enter their account credentials. That’s it.
Explore link's core features
Intuitive search
Up and running in less than an afternoon
Integrate Argyle Link natively on iOS, Android, or web and embed it anywhere in your flow, with just a few lines of code. Or choose our no-code SDK option to set Argyle Link live without developer resources.
View Documentation1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<!-- This is needed in order to apply proper scaling on mobile devices -->
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
</head>
<body>
<script src="https://plugin.argyle.com/argyle.web.v3.js"></script>
<script type="text/javascript">
const argyle = Argyle.create({
linkKey: 'YOUR_LINK_KEY',
apiHost: 'https://api-sandbox.argyle.com/v1',
// userToken: 'USER_TOKEN',
// linkItems: ['lyft', 'uber'],
onAccountCreated: ({ accountId, userId, linkItemId }) => {
console.log('Account created: ', accountId, ' User ID:', userId, ' Link Item ID:', linkItemId)
},
onAccountConnected: ({ accountId, userId, linkItemId }) => {
console.log('Account connected: ', accountId, ' User ID:', userId, ' Link Item ID:', linkItemId)
},
onAccountUpdated: ({ accountId, userId, linkItemId }) => {
console.log('Account updated: ', accountId, ' User ID:', userId, ' Link Item ID:', linkItemId)
},
onAccountRemoved: ({ accountId, userId, linkItemId }) => {
console.log('Account removed: ', accountId, ' User ID:', userId, ' Link Item ID:', linkItemId)
},
onUserCreated: ({ userId, userToken }) => {
console.log('User created: ', userId, 'User token:', userToken)
},
onClose: () => {
console.log('Link closed')
},
onTokenExpired: updateToken => {
console.log('Token expired')
// generate your new token here (more info: /developer-tools/api-reference#user-tokens)
// updateToken(newToken)
}
})
argyle.open()
</script>
</body>
</html>
Check out our toolbox. Argyle Link is just one of three tools that work together to deliver a suite of accessible solutions to providers across the consumer finance industry.
Argyle Link. Embeds easily in your website or app
Sign up and start building
Try testing today. No credit card required.