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

# Remove CBN Restriction

> Remove a Central Bank (CBN) enforced restriction. Body is optional.

This endpoint is for CBN-specific wallet restrictions. Use it when a restriction comes from a CBN enforcement workflow and needs to be lifted. The request body is optional, but providing a reason or final amount can help support teams track why the restriction was removed.

<ParamField body="restrictionId" type="string" required>
  Path parameter: UUID of the restriction to remove
</ParamField>

<ParamField body="restrictionAmount" type="number">
  Optional: override the restriction amount when removing
</ParamField>

<ParamField body="reasonCode" type="string">
  Optional: reason code for removal
</ParamField>

<ParamField body="reason" type="string">
  Optional: human explanation
</ParamField>

<RequestExample>
  ```json theme={null}
  {
    "restrictionAmount": 0,
    "reasonCode": "string",
    "reason": "string"
  }
  ```
</RequestExample>

<ResponseExample>
  ```json 200 Success theme={null}
  {
    "code": "00",
    "success": true,
    "message": "Wallet restriction limit removed successfully",
    "data": null
  }
  ```
</ResponseExample>
