Skip to main content
POST
/
api
/
service
/
payee
/
verify
JavaScript
import Ivy from '@getivy/node-sdk';

const client = new Ivy({
  apiKey: process.env['IVY_API_KEY'], // This is the default and can be omitted
});

const response = await client.payee.verify({
  payee: {
    iban: { accountHolderName: 'x', iban: 'iban' },
    type: 'iban',
  },
});

console.log(response.status);
{
  "status": "match",
  "suggestedAccountHolderName": "<string>"
}

Authorizations

X-Ivy-Api-Key
string
header
required

API key for authentication

Body

application/json
payee
object
required

Response

Verification completed successfully

status
enum<string>
required

The verification result status

Available options:
match,
partial_match,
no_match,
not_available
suggestedAccountHolderName
string