PATCH
/
customer
/
profile
/
{customerId}
curl --request PATCH \
  --url https://devapi.withedge.co/gateway/api/v1/customer/profile/{customerId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'requestId: <requestid>' \
  --data '{
  "status": true,
  "reason": "<string>"
}'
{
	"statusCode": "00",
	"message": "Customer Profile Successfully Deactivated",
	"data": {},
	"errors": []
}

Enable/Disable Customer

Use this endpoint to enable or disable the profile of an existing customer on the Edge platform.


Request Parameters

requestId
string
required

A unique identifier for the request, used for idempotency.
Example: e0b9f8d0-7a57-4a67-a8b2-4d7c7b5a37c9

customerId
string
required

The unique identifier of the customer whose profile is to be enabled or disabled.
Example: 7100987614

status
boolean
required

Specifies the action to be performed:

  • true: Enables the customer’s profile.
  • false: Disables the customer’s profile.
reason
string
required

The reason for enabling or disabling the customer’s profile.
Example: Fraudulent activity detected

{
	"statusCode": "00",
	"message": "Customer Profile Successfully Deactivated",
	"data": {},
	"errors": []
}