Skip to main content
TODO — The source documentation for this endpoint was incomplete. Verify the following before publishing:
  • Confirm the correct request body fields and their types
  • Confirm whether this endpoint updates role, status, profile fields, or some combination
  • Add a real response example

Endpoint

PATCH /clients/members/{id}

Path parameters

id
string
required
The unique ID of the member to update.

Headers

Authorization
string
required
Bearer YOUR_ACCESS_TOKEN
SECRET_KEY
string
required
Your API secret key.
businessId
string
required
Your business ID.

Response

status
boolean
true on success.
message
string
Confirmation message.

Code examples

curl -X PATCH https://sandbox.stellasbank.com/api/v1/clients/members/MEMBER_ID \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "SECRET_KEY: YOUR_SECRET_KEY" \
  -H "businessId: YOUR_BUSINESS_ID" \
  -H "Content-Type: application/json" \
  -d '{}'

Example response

{
  "status": true,
  "message": "Member updated successfully"
}