Skip to main content
Update a business’s details.
POST /api/v1/businesses/:businessId/update-business

Parameters

Path

NameTypeRequiredDescription
businessIdstringYesThe business ID

Body

NameTypeRequiredDescription
namestringNoNew business name, 1–128 characters

Request example

curl --request POST 'https://payments.bleepay.com/api/v1/businesses/biz_abc123/update-business' \
  --header 'Authorization: Bearer <business_token>' \
  --header 'Content-Type: application/json' \
  --data '{ "name": "Acme Corp Updated" }'

Response

Returns HTTP 200 with an empty body.