โŒDelete Customer

You are able to remove a Customers record from your Gathr database using customer_id.

Delete a Customer

DELETE {{baseUrl}}/customers/{{customerId}}

Path Parameters

NameTypeDescription

customer_id*

String

This is UUID for a specific customer that gets generated and returned in the POST Create New Customer response. It ensures that the Bank Account is created and can be looked up in future for that specific customer.

Status Code

200 - OK

Customer Deleted

{
    "deleted": [
        "{{customerId}}"
    ]
}

Last updated