Skip to main content

Finicity Authentication Keys

Description

General

  • Documentation: https://docs.finicity.com/
  • Summary: The Finicity Connect application allows customers to grant Finicity authorization and use of their account credentials to access their financial data.
  • IPs allowlist: To access Finicity’s API, the machine connecting to the API must be located inside the United States or Canada. TLS 1.2 or higher is required for all requests to the API.
  • Scopes: Finicity provides development tools and technical capabilities to have free access to their API endpoint, connection to access information are done via TSP protocol or OAuth service. See the documentation for more details.

Revoke the secret

There is no direct way to revoke the keys through the API with the trial version. It is unknown if it is implemented for premium features or not (not documented).

Check for suspicious activity

As of the time of writing this documentation, this feature is not available.

Details for Finicity auth keys

  • Family: Api

  • Category: Payment system

  • Company: Finicity

  • High recall: False

  • Validity check available: False

  • Minimum number of matches: 2

  • Occurrences found for one million commits: 0.16

  • Prefixed: False

  • PreValidators:

- type: ContentWhitelistPreValidator
patterns:
- finicity

Examples

- text: |
Finicity.prototype.token = function(){
// console.log('>>>>>>>>>>>>.>>>>>>>.>>>>>>>>');
var options=
{
url: 'https://api.finicity.com/aggregation/v2/partners/authentication', //URL to hit
//qs: {from: 'blog example', time: +new Date()}, //Query string data
//simple:false,
method: 'POST',
headers: {
'Finicity-App-Key' : '4d003c112e66263b9dec7a3dbfa9b5f5',
'content-type': 'application/json',
'Accept': 'application/json'
},
json : {
partnerId: '2440890153215',
partnerSecret: 'geruj4LFyu0NBeBOnQvo'
}
};

client_id: '2440890153215'
client_secret: geruj4LFyu0NBeBOnQvo

How can I help you ?