/home/kueuepay/public_html/storage/framework/views/d62e082fc9d45a4f8027326f52045f6ae0c29f02.php

<?php $__env->startSection('content'); ?>
<div class="developer-body-wrapper">
    <div class="developer-main-wrapper">
        <div class="row mb-30-none">
            <div class="col-lg-6 mb-30">
                <h1 class="heading-title mb-20"><?php echo e(__("Get Access Token")); ?></h1>
                <p><?php echo e(__("Get access token to initiates payment transaction.")); ?></p>
                <div class="mb-10">
                    <strong><?php echo e(__("Endpoint")); ?>:</strong> <span class="badge custom rounded-pill bg-primary">POST</span> <code class="fw-bold fs-6" style="color: #EE8D1D;"><code></code>generate-token</code>
                </div>
                <div class="table-responsive">
                    <table class="table table-striped token-table">
                        <thead>
                          <tr>
                            <th scope="col"><?php echo e(__("Parameter")); ?></th>
                            <th scope="col"><?php echo e(__("Type")); ?></th>
                            <th scope="col"><?php echo e(__("Comments")); ?></th>
                          </tr>
                        </thead>
                        <tbody>
                          <tr>
                            <th scope="row">client_id</th>
                            <td>string</td>
                            <td><?php echo e(__("Enter merchant API client/primary key")); ?></td>
                          </tr>
                          <tr>
                            <th scope="row">secret_id</th>
                            <td>string</td>
                            <td><?php echo e(__("Enter merchant API secret key")); ?></td>
                          </tr>
                          <tr>
                            <th scope="row">env</th>
                            <td>string</td>
                            <td><?php echo e(__("Enter merchant API environment")); ?></td>
                          </tr>
                          <tr>
                            <th scope="row">merchant_id</th>
                            <td>string</td>
                            <td><?php echo e(__("Enter merchant API merchant id")); ?></td>
                          </tr>
                        </tbody>
                      </table>
                </div>
            </div>
            <div class="col-lg-6 mb-30">
                <span class="mb-10"><?php echo e(__("Just request to that endpoint with all parameter listed below")); ?>:</span>
                <pre class="prettyprint mt-0" style="white-space: normal;">
                    <span class="code-show-list">
                        <span>Request Example (guzzle)</span>
                        <br>
                        <span>
                            <br>&lt;?php
                            <br> require_once('vendor/autoload.php');
                            <br> $client = new \GuzzleHttp\Client();
                            <br> $response = $client->request('POST', $base_url. 'v1/generate-token', [
                            <br>'headers' => [
                            <br>&nbsp;&nbsp;'accept' => 'application/json',
                            <br>&nbsp;&nbsp;'content-type' => 'application/json',
                            <br>&nbsp;],
                            <br>'form_params' => [
                            <br>&nbsp;&nbsp;'client_id'     => '$client_id',
                            <br>&nbsp;&nbsp;'secret_id'     => 'secret_id',
                            <br>&nbsp;&nbsp;'env'           => 'env',
                            <br>&nbsp;&nbsp;'merchant_id'   => 'merchant_id',
                            <br>&nbsp;],
                            
                            <br>]);
                            <br>echo $response->getBody();
                        </span>
                    </span>
                </pre>
                <pre class="prettyprint mt-0" style="white-space: normal;">
                    <span class="code-show-list">
                        <br>**Response: SUCCESS (200 OK)**
                        <br>{
                        <br>&nbsp;"message": {
                        <br>&nbsp;"success": [
                        <br>&nbsp;&nbsp;"Successfully token is generated"
                        <br>&nbsp;]
                        <br>},
                        <br>"data": {
                        <br>&nbsp;"token":"eyJpdiI6InpkczhjTjhQdVhUL2lKQ0pSUUx6aUE9P</br>SIsInZhbHVlIjoiVGVBTVBDTXltbjNZcEIvdEJveGpTSno3TU5NRUtn</br>VkhCZ1pHTFNCUnZGQ2UxMnYxN202cEE1YVRDTEFsc0ZERExoTjdtL0dTL2x</br>oU3QzeUJJOExiMUx5T0w1L0llUXhTUkU1cWVLWEdEbEplb0dKNXcwbTNRM0</br>VxdkUwYzZuNFdtNkhMQ0pRZysyNWkvdzBxSlBoSVBSOGFTekNnR2RXNHVtc</br>G9lMGZOTmNCcm1hR3c5Sk9KTnB4Y3ltZDl6cm90MThrR21Ca3B1azc3bXRi</br>Q0J6SW96UVo1elNkU1ZqeE05bTcwWGp1MEUxWlJFdnNWTmpSbnVpeW92b2U</br>4dXZkUGgyb1VmK0luaGdyaFlsVTZlcVpVRnZlTG1DeFF6Ykk2T2h6Z3Jzbn</br>IyNHpNdHowSE5JdDR0Y0pZT20zUm1XYW8iLCJtYWMiOiJlY2M4NGE1OGUzYz</br>kzYzk0YzljNmVmNjE0YWI0ZDIwOGI3NDQ2YWEyY2ZhNzc0NzE4ZmY1ZmYyMz</br>
                        IyZmQzNDY1IiwidGFnIjoiIn0=",
                        <br>},
                        <br>"type": "success"
                        <br>}
                    </span>
                </pre>
                <pre class="prettyprint mt-0" style="white-space: normal;">
                    <span class="code-show-list">
                        <br>**Response: ERROR (400 FAILED)**
                        <br>{
                        <br>&nbsp;"message": {
                        <br>&nbsp;"error": [
                        <br>&nbsp;&nbsp;"Invalid credentials."
                        <br>&nbsp;]
                        <br>},
                        <br>"data": null,
                        <br>"type": "error"
                        <br>}
                    </span>
                </pre>
            </div>
        </div>
    </div>
    <div class="page-change-area">
        <div class="navigation-wrapper">
            <a href="<?php echo e(setRoute('frontend.developer.base.url')); ?>" class="left"><i class="las la-arrow-left me-1"></i>  <?php echo e(__("Base URL")); ?></a>
            <a href="<?php echo e(setRoute('frontend.developer.initiate.payment')); ?>" class="right"><?php echo e(__("Initiate Payment")); ?> <i class="las la-arrow-right ms-1"></i></a>
        </div>
    </div>
</div>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('developer.layouts.master', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/kueuepay/public_html/resources/views/developer/pages/access-token.blade.php ENDPATH**/ ?>
Refund Policy
top

At NFC Pay, we strive to provide a seamless and satisfactory experience with our services. This Refund Policy outlines the circumstances under which refunds may be issued for transactions made through our platform. Please read this policy carefully to understand your rights regarding refunds.
1. Eligibility for Refunds
Refunds may be considered under the following circumstances:
 

2. Non-Refundable Situations
Refunds will generally not be issued in the following situations:
 

3. Refund Process
To request a refund, please follow these steps:
 

  1. Contact Customer Support: Reach out to our customer support team via [email/phone/app support chat] with your transaction details, including the date, amount, and reason for the refund request.
  2. Investigation: Our team will review your request and may ask for additional information or documentation to support your claim. This process typically takes [5-10 business days], depending on the complexity of the issue.
  3. Refund Decision: After reviewing your request, we will notify you of our decision. If approved, the refund will be processed back to your original payment method. The timing of the refund will depend on your bank or payment provider and may take up to [10 business days] to reflect in your account.

4. Refund Exceptions
Certain transactions may be subject to specific terms and conditions, including non-refundable fees or charges. Please review the terms associated with each transaction carefully, as some fees may not be eligible for refunds.
5. Modifications to the Refund Policy
NFC Pay reserves the right to modify this Refund Policy at any time. Changes will be communicated through updates on our website and app, and the effective date will be updated accordingly. We encourage you to review this policy periodically to stay informed about our refund practices.
By using NFC Pay, you agree to this Refund Policy and understand the terms under which refunds may be issued. Our goal is to ensure a fair and transparent refund process, providing you with confidence and peace of mind when using our services.