Was this helpful?
Returns a list of all the profiles
/v1/profiles
curl -L \ --url 'https://api.bankingservice.ai/v1/profiles'
[ { "id": "text", "trade_name": "NxTap", "address": { "premise": 58, "sub_premise": "A", "building": "text", "postal_code": "text", "thoroughfare": "text", "locality": "Hoofddorp", "state": "Noord-Holland", "country": "NL" }, "created": "2024-09-25T12:01:00.103Z" } ]
Returns a profile
/v1/profiles/{profileId}
The id of the partner to retrieve
The id of the profile
curl -L \ --url 'https://api.bankingservice.ai/v1/profiles/{profileId}'
{ "id": "text", "trade_name": "NxTap", "address": { "premise": 58, "sub_premise": "A", "building": "text", "postal_code": "text", "thoroughfare": "text", "locality": "Hoofddorp", "state": "Noord-Holland", "country": "NL" }, "created": "2024-09-25T12:01:00.103Z" }