> ## 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.

# Reset Card Pin

> The endpoint enables you to reset card pins

<ParamField body="accountNumber" type="string" required>
  The account number. **Example:** "9710005607"
</ParamField>

<ParamField body="cardNumber" type="string" required>
  The encrypted card number. **Example:**
  "rg7c2ZhXDK/6ZUCgfmW4TmRcfy5MjP6F404yWh2A9/rGDyFPllkIh1Anh5wDOa5G"
</ParamField>

<ParamField body="pin" type="string" required>
  The encrypted pin of the card. **Example:**
  "rg7c2ZhXDK/6ZUCgfmW4TmRcfy5MjP6F404yWh2A9/rGDyFPllkIh1Anh5wDOa5G"
</ParamField>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "code": "200",
    "success": true,
    "message": "Pin reset completed successfully.",
    "data": {
      // Additional details if applicable
    }
  }
  ```

  ```json 401 Unauthorized theme={null}
  {
    "code": "401",
    "success": false,
    "message": "x-api-key is missing in the header",
    "data": null
  }
  ```

  ```json 400 Bad Request theme={null}
  {
    "code": "400",
    "success": false,
    "message": "Invalid request data",
    "data": null
  }
  ```

  ```json 500 Internal Server Error theme={null}
  {
    "code": "500",
    "success": false,
    "message": "An unexpected error occurred",
    "data": null
  }
  ```
</ResponseExample>
