> For the complete documentation index, see [llms.txt](https://developer.providusbank.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.providusbank.com/xpress-wallet-api/merchant/account-verification.md).

# Account verification

Verify a merchant account using an activation code.

* **Endpoint**: `PUT {{base-url}}/merchant/verify`
* **Body**:

  ```json
  {
    "activationCode": "9004546"
  }
  ```
* **Response**:
  * **200 OK**:

    ```json
    {
      "status": true,
      "message": "Your account has been successfully verified."
    }
    ```
* **Sample Code (Dart)**:

  ```dart
  var request = http.Request('PUT', Uri.parse('{{base-url}}/merchant/verify'));
  request.body = '''{
    "activationCode": "5581413"
  }''';
  http.StreamedResponse response = await request.send();
  if (response.statusCode == 200) {
    print(await response.stream.bytesToString());
  } else {
    print(response.reasonPhrase);
  }
  ```
