> ## Documentation Index
> Fetch the complete documentation index at: https://doc.withedge.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Enable/Disable Customer

> This endpoint enables you to disable or enable any of your existing customer's profile.

# Enable/Disable Customer

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

***

## Request Parameters

<ParamField header="requestId" type="string" required>
  A unique identifier for the request, used for idempotency.\
  **Example:** `e0b9f8d0-7a57-4a67-a8b2-4d7c7b5a37c9`
</ParamField>

<ParamField path="customerId" type="string" required>
  The unique identifier of the customer whose profile is to be enabled or disabled.\
  **Example:** `7100987614`
</ParamField>

<ParamField body="status" type="boolean" required>
  Specifies the action to be performed:

  * `true`: Enables the customer's profile.
  * `false`: Disables the customer's profile.
</ParamField>

<ParamField body="reason" type="string" required>
  The reason for enabling or disabling the customer's profile.\
  **Example:** `Fraudulent activity detected`
</ParamField>

<ResponseExample>
  ```json
  {
  	"statusCode": "00",
  	"message": "Customer Profile Successfully Deactivated",
  	"data": {},
  	"errors": []
  }
  ```
</ResponseExample>
