Create an account assessment
This endpoint allows you to assess a SEPA counterparty account by retrieving risk and fraud indicators, account capabilities and by performing IBAN and name/identification matching.
POST
/v2/account_assessments
curl \
--request POST 'https://api.memo.bank/v2/account_assessments' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"iban":"FR7617338000014606038580616","identifications":[{"value":"John Doe","type":"name"}]}'
Request examples
{
"iban": "FR7617338000014606038580616",
"identifications": [
{
"value": "John Doe",
"type": "name"
}
]
}
Response examples (200)
{
"id": "61ccd037-8d95-4856-89e7-b043fb84ca26",
"status": "pending",
"iban": "FR7617338000014606038580616"
}