Skip to main content

Manage Customers

List Customers

curl https://api.ikawaari.com/v1/customers \
-H "Authorization: Bearer ik_test_your_key"

Update a Customer

curl -X PATCH https://api.ikawaari.com/v1/customers/cus_abc123 \
-H "Authorization: Bearer ik_test_your_key" \
-H "Content-Type: application/json" \
-d '{ "name": "Aminata Koné-Diallo" }'

Delete a Customer

curl -X DELETE https://api.ikawaari.com/v1/customers/cus_abc123 \
-H "Authorization: Bearer ik_test_your_key"
warning

Deleting a customer will cancel all active subscriptions and remove saved payment methods.

Search Customers

curl "https://api.ikawaari.com/v1/customers?email=aminata@example.com" \
-H "Authorization: Bearer ik_test_your_key"