Update an IBAN
PATCH
/v2/ibans/{id}
This operation allows you to update an IBAN name or change its status. Only provided parameters have an affect on the current state of an IBAN.
Path parameters
-
id string(uuid) Required
ID of the IBAN.
Body Required
PATCH /v2/ibans/{id}
curl \
-X PATCH https://api.memo.bank/v2/ibans/fe98f29d-5165-45ff-83f9-d7aa83e970b5 \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"name":"string","status":"active"}'
Request example
{
"name": "string",
"status": "active"
}
Response example (200)
{
"id": "fe98f29d-5165-45ff-83f9-d7aa83e970b5",
"account_id": "de2284c3-0360-4e4a-b10d-771f75b772d4",
"iban": "FR27590171083068762111832788",
"name": "customer no12345",
"status": "active",
"type": "main"
}