> 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/complete-merchant-kyc.md).

# Complete Merchant KYC

Submit KYC documents for merchant registration.

* **Endpoint**: `PUT {{base-url}}/merchant/complete-merchant-registration`
* **Body** (form-data):
  * `cac_pack`: File (e.g., `/C:/herlabytes/Medilog/src/assets/images/avatar.png`)
  * `directorsBVN`: BVN number (e.g., `22192640723`)
  * `merchantId`: Merchant ID (e.g., `2c5356fc-1127-4e67-a001-2ae170731bee`)
* **Response**:
  * **200 OK**:

    ```json
    {
      "status": true,
      "message": "Your Documents have been uploaded and Pending Review"
    }
    ```
* **Sample Code (Dart)**:

  ```dart
  var request = http.MultipartRequest('PUT', Uri.parse('{{base-url}}/merchant/complete-merchant-registration'));
  request.fields.addAll({
    'directorsBVN': '22222222226',
    'merchantId': '46791573-12d5-4f65-9868-f09a6a18aa74'
  });
  request.files.add(await http.MultipartFile.fromPath('cac_pack', '/Users/Herlarbs/Downloads/Bleyt Glide Development Scope.pdf'));
  http.StreamedResponse response = await request.send();
  if (response.statusCode == 200) {
    print(await response.stream.bytesToString());
  } else {
    print(response.reasonPhrase);
  }
  ```
