---
page_title: Webhooks
product: Payv3
platform: Web
page_source: https://juspay.io/in/docs/payv3/web/base-integration/webhooks
llms_txt: https://juspay.io/in/docs/llms.txt
product_llms_txt: https://juspay.io/in/docs/payv3/llms.txt
---


# **Webhooks** 



After the completion of every payment/refund call, Juspay will provide direct notification to your server regarding the event. These are called Webhooks. You must configure a valid HTTPS endpoint that is reachable from our servers to consume these notifications. Our servers will push data using HTTPS POST call to your endpoint.

Based on the API version configured in the dashboard, webhooks will be triggered for the events below.

* Payment Success
* Payment Failure
* Refund Success
* Refund failure
* Order Creation
* Transaction Creation
* Refund Moved to Manual Review.


#### **Why webhooks?** 



Payment redirection using customers' browsers are not reliable all the time. There would be instances where customers' devices would be on low-quality connections and thereby the final redirection might not succeed. In such cases, a webhook call can help you complete the order for the customer.

But care must be taken while consuming the webhook data. Since you might receive both webhook and customer redirection around the same time, you should not process the order twice. This is true for most cases.

In very rare scenarios, our webhook call pertaining to order might hit your server more than once. This can happen due to network fluctuations. So, care must be taken to ensure that such scenarios are handled too.


#### **Events** 




| Event Name | Description | Webhook API version |
|---|---|---|
| ORDER_SUCCEEDED | Generated when payment is successful for an order | For all the versions |
| ORDER_REFUNDED | Generated when a refund is successful | For all the versions |
| ORDER_FAILED | Generated when an order payment fails | For all the versions >= "2016-07-19" |
| ORDER_REFUND_FAILED | Generated when an order refund fails | For all the versions |
| TXN_CREATED | Generated when payment is initiated for an order | For all the versions >= "2016-10-27" |
| REFUND_MANUAL_REVIEW_NEEDED | Generated when the refund status is ambiguous and the refund has to be manually reconciled by the merchant with the payment processor. | For all the versions |
| REFUND_INITIATED | Generated when refund is initiated for an order | For all the versions |
| AUTO_REFUND_SUCCEEDED | Generated when the transaction is auto refunded and refund is success | For all the versions >= "2019-11-11" |
| AUTO_REFUND_FAILED | Generated when the transaction is auto refunded and refund is failure | For all the versions >= "2019-11-11" |
| MANDATE_CREATED | Generated when the mandate is created | For all the versions |
| MANDATE_ACTIVATED | Generated when the mandate is successful registered | For all the versions |
| MANDATE_FAILED | Generated when the mandate registration fails | For all the versions |
| MANDATE_REVOKED | Generated when the mandate is revoked by the merchant | For all the versions |
| NOTIFICATION_FAILED | Generated when the mandate notification is failed | For all the versions |
| NOTIFICATION_SUCCEEDED | Generated when the mandate notification is success | For all the versions |
| ORDER_AUTHORIZED | Generated for pre-auth enabled transactions when the payment is AUTHORIZED | For all the versions |
| TXN_CHARGED | Transaction level webhook, generated when a transaction become successful | For all the versions >="2020-10-31" |
| TXN_FAILED | Transaction level webhook, generated when a transaction fails | For all the versions >="2020-10-31" |


Webhook API version can be configured in the dashboard > Settings > Webhooks Tab > Webhook API version


#### **Response structure for Webhook** 




#### JSON Code Snippet:

```json
{
  "id": "evt_gsu1c0r7umcfrxeb",
  "date_created": "2015-06-03T10:42:25Z",
  "event_name": "ORDER_SUCCEEDED",
  "content": {
    "order": {
        /* Complete order data as obtained from /order/:order_id API */
    }
  } 
}
```



#### **Webhook Authentication** 



We support Basic HTTP Authentication for your Webhook URL. Using Username and password fields to authenticate the webhook call is mandatory. Please ensure that special characters like @ are not used in username.


#### **Handling Failures** 




#### If your server is not reachable and we receive a non-200 response when we are attempting webhook notification, we would mark the webhook notified section in our dashboard as False. Hence, consume webhooks on with 200 response code.




#### **You would receive webhook events from the following IPs** 



Production:13.126.232.1335.154.93.24865.2.117.443.110.250.172

Sandbox:52.221.151.24913.228.4.19513.234.141.1653.111.27.223.109.41.51


#### **Caveats:** 



Although our webhooks are reliable, it is always suggested that you use our GetOrderStatus API to poll our systems, in case you do not receive the webhooks in time.

This will handle the cases where the webhooks could not be notified to your system. The threshold beyond which you start polling our system can be decided basis your business use case.



## Sample Code Snippets:
### Payload:

#### ORDER_SUCCEEDED Code Snippet:

```order_succeeded
{
  "id": "evt_V2_b737837102414514ae0e9717a9f2664d",
  "event_name": "ORDER_SUCCEEDED",
  "date_created": "2023-08-10T07:00:48Z",
  "content": {
    "order": {
      "offers": [],
      "txn_id": "ms-sample_ord_200-1",
      "udf7": "FILTERED",
      "payment_method": "VISA",
      "txn_uuid": "moziqFZtYKQkTsRFGXX",
      "metadata": {
        "payment_page_client_id": "FILTERED",
        "merchant_payload": "{\"customerPhone\":\"999999999\",\"customerEmail\":\"1111111\"}",
        "payment_page_sdk_payload": "FILTERED",
        "payment_links": {
          "web": "https://api.juspay.in/orders/ordeh_a9eb2884e4fe4738b70c3d51e6397d34/payment-page",
          "iframe": "https://api.juspay.in/orders/ordeh_a9eb2884e4fe4738b70c3d51e6397d34/payment-page",
          "mobile": "https://api.juspay.in/orders/ordeh_a9eb2884e4fe4738b70c3d51e6397d34/payment-page"
        }
      },
      "udf5": "FILTERED",
      "status_id": 21,
      "amount_refunded": 0,
      "udf9": "FILTERED",
      "status": "CHARGED",
      "bank_error_message": "",
      "id": "ordeh_a9eb2884e4fe4738b70c3d51e6397d34",
      "auth_type": "THREE_DS",
      "udf3": "",
      "udf6": "FILTERED",
      "udf10": "FILTERED",
      "effective_amount": 1,
      "product_id": "",
      "order_id": "sample_ord_200",
      "return_url": "https://shop.merchant.com",
      "payment_gateway_response": {
        "gateway_response": {
          "authCode": "ybbjy9",
          "resMessage": "FILTERED",
          "mandateToken": "FILTERED",
          "resCode": "200"
        },
        "created": "2023-08-10T07:00:48Z",
        "auth_id_code": "ybbjy9"
      },
      "udf1": "",
      "currency": "INR",
      "udf4": "",
      "customer_id": "FILTERED",
      "date_created": "1111111T07:00:40Z",
      "gateway_id": 100,
      "payment_links": {
        "web": "https://api.juspay.in/merchant/pay/ordeh_a9eb2884e4fe4738b70c3d51e6397d34",
        "iframe": "https://api.juspay.in/merchant/ipay/ordeh_a9eb2884e4fe4738b70c3d51e6397d34",
        "mobile": "https://api.juspay.in/merchant/pay/ordeh_a9eb2884e4fe4738b70c3d51e6397d34?mobile=true"
      },
      "maximum_eligible_refund_amount": "FILTERED",
      "txn_detail": {
        "express_checkout": true,
        "txn_id": "ms-sample_ord_200-1",
        "txn_amount": 1,
        "error_message": "",
        "txn_uuid": "moziqFZtYKQkTsRFGXX",
        "created": "2023-08-10T07:00:46Z",
        "metadata": { "payment_channel": "WEB", "microapp": "hyperpay" },
        "gateway": "DUMMY",
        "status": "CHARGED",
        "net_amount": 1,
        "order_id": "sample_ord_200",
        "currency": "INR",
        "error_code": "",
        "gateway_id": 100,
        "txn_flow_type": "FILTERED",
        "redirect": true
      },
      "bank_error_code": "",
      "udf8": "FILTERED",
      "payment_method_type": "CARD",
      "customer_phone": "FILTERED",
      "merchant_id": "ms",
      "customer_email": "FILTERED",
      "udf2": "",
      "amount": 1,
      "refunded": false,
      "card": "FILTERED"
    }
  }
}

```

#### ORDER_FAILED Code Snippet:

```order_failed
{
  "id": "evt_V2_f139d51b776541bdbccf6cf49234bc8c",
  "event_name": "ORDER_FAILED",
  "date_created": "2023-08-10T07:19:10Z",
  "content": {
    "order": {
      "offers": [],
      "txn_id": "ms-sample_ord_502-1",
      "udf7": "",
      "payment_method": "VISA",
      "txn_uuid": "mozjMqS7hbYyLR6fdw1",
      "metadata": {
        "payment_page_client_id": "FILTERED",
        "merchant_payload": "{\"customerPhone\":\"999999999\",\"customerEmail\":\"1111111\"}",
        "payment_page_sdk_payload": "FILTERED",
        "payment_links": {
          "web": "https://api.juspay.in/orders/ordeh_3bdee390002446519a8ba483d41e0e7e/payment-page",
          "iframe": "https://api.juspay.in/orders/ordeh_3bdee390002446519a8ba483d41e0e7e/payment-page",
          "mobile": "https://api.juspay.in/orders/ordeh_3bdee390002446519a8ba483d41e0e7e/payment-page"
        }
      },
      "udf5": "",
      "status_id": 27,
      "amount_refunded": 0,
      "udf9": "",
      "gateway_reference_id": null,
      "status": "AUTHORIZATION_FAILED",
      "bank_error_message": "Not sufficient funds",
      "id": "ordeh_3bdee390002446519a8ba483d41e0e7e",
      "auth_type": "THREE_DS",
      "udf3": "",
      "udf6": "",
      "udf10": "",
      "effective_amount": 8,
      "product_id": "",
      "bank_pg": null,
      "order_id": "sample_ord_502",
      "return_url": "https://shop.merchant.com",
      "payment_gateway_response": {
        "txn_id": null,
        "gateway_response": {
          "authCode": "",
          "resMessage": "FILTERED",
          "mandateToken": "",
          "resCode": "03"
        },
        "created": "2023-08-10T07:19:10Z",
        "resp_message": null,
        "resp_code": null,
        "auth_id_code": "",
        "epg_txn_id": null,
        "rrn": null
      },
      "udf1": "",
      "currency": "INR",
      "udf4": "",
      "customer_id": "FILTERED",
      "date_created": "1111111T07:18:57Z",
      "gateway_id": 100,
      "payment_links": {
        "web": "https://api.juspay.in/merchant/pay/ordeh_3bdee390002446519a8ba483d41e0e7e",
        "iframe": "https://api.juspay.in/merchant/ipay/ordeh_3bdee390002446519a8ba483d41e0e7e",
        "mobile": "https://api.juspay.in/merchant/pay/ordeh_3bdee390002446519a8ba483d41e0e7e?mobile=true"
      },
      "txn_detail": {
        "express_checkout": true,
        "txn_id": "ms-sample_ord_502-1",
        "txn_amount": 8,
        "error_message": "Not sufficient funds",
        "txn_uuid": "mozjMqS7hbYyLR6fdw1",
        "created": "2023-08-10T07:19:07Z",
        "metadata": { "payment_channel": "WEB", "microapp": "hyperpay" },
        "gateway": "DUMMY",
        "status": "AUTHORIZATION_FAILED",
        "net_amount": 8,
        "order_id": "sample_ord_502",
        "currency": "INR",
        "error_code": "03",
        "gateway_id": 100,
        "surcharge_amount": null,
        "txn_flow_type": "FILTERED",
        "tax_amount": null,
        "redirect": true
      },
      "bank_error_code": "03",
      "udf8": "",
      "payment_method_type": "CARD",
      "rewards_breakup": null,
      "customer_phone": "FILTERED",
      "merchant_id": "ms",
      "customer_email": "FILTERED",
      "udf2": "",
      "amount": 8,
      "refunded": false,
      "card": "FILTERED"
    }
  }
}

```

#### ORDER_REFUNDED Code Snippet:

```order_refunded
{
  "id": "evt_V2_132b474fe46b4518a561ad1aa18b4e42",
  "event_name": "ORDER_REFUNDED",
  "date_created": "2023-08-10T07:49:01Z",
  "content": {
    "order": {
      "offers": [],
      "txn_id": "ms-sample_ord_403-1",
      "udf7": "FILTERED",
      "payment_method": "VISA",
      "txn_uuid": "moz3AaBzkvLbgPY99xi",
      "metadata": {
        "payment_page_client_id": "FILTERED",
        "merchant_payload": "{\"customerPhone\":\"999999999\",\"customerEmail\":\"1111111\"}",
        "payment_page_sdk_payload": "FILTERED",
        "payment_links": {
          "web": "https://api.juspay.in/orders/ordeh_11772e318c124b96ab9791ec3f6b13f8/payment-page",
          "iframe": "https://api.juspay.in/orders/ordeh_11772e318c124b96ab9791ec3f6b13f8/payment-page",
          "mobile": "https://api.juspay.in/orders/ordeh_11772e318c124b96ab9791ec3f6b13f8/payment-page"
        }
      },
      "udf5": "FILTERED",
      "status_id": 21,
      "amount_refunded": 5,
      "udf9": "FILTERED",
      "gateway_reference_id": null,
      "status": "CHARGED",
      "bank_error_message": "",
      "id": "ordeh_11772e318c124b96ab9791ec3f6b13f8",
      "auth_type": "THREE_DS",
      "udf3": "",
      "udf6": "FILTERED",
      "udf10": "FILTERED",
      "effective_amount": 8,
      "product_id": "",
      "bank_pg": null,
      "order_id": "sample_ord_403",
      "return_url": "https://shop.merchant.com",
      "payment_gateway_response": {
        "txn_id": null,
        "gateway_response": {
          "authCode": "ef9cyl",
          "resMessage": "FILTERED",
          "mandateToken": "FILTERED",
          "resCode": "00"
        },
        "created": "2023-08-10T07:21:11Z",
        "resp_message": null,
        "resp_code": null,
        "auth_id_code": "ef9cyl",
        "epg_txn_id": null,
        "rrn": null
      },
      "udf1": "",
      "currency": "INR",
      "udf4": "",
      "customer_id": "FILTERED",
      "date_created": "1111111T07:21:01Z",
      "gateway_id": 100,
      "payment_links": {
        "web": "https://api.juspay.in/merchant/pay/ordeh_11772e318c124b96ab9791ec3f6b13f8",
        "iframe": "https://api.juspay.in/merchant/ipay/ordeh_11772e318c124b96ab9791ec3f6b13f8",
        "mobile": "https://api.juspay.in/merchant/pay/ordeh_11772e318c124b96ab9791ec3f6b13f8?mobile=true"
      },
      "maximum_eligible_refund_amount": "FILTERED",
      "txn_detail": {
        "express_checkout": true,
        "txn_id": "ms-sample_ord_403-1",
        "txn_amount": 8,
        "error_message": "",
        "txn_uuid": "moz3AaBzkvLbgPY99xi",
        "created": "2023-08-10T07:21:08Z",
        "metadata": { "payment_channel": "WEB", "microapp": "hyperpay" },
        "gateway": "DUMMY",
        "status": "CHARGED",
        "net_amount": 8,
        "order_id": "sample_ord_403",
        "currency": "INR",
        "error_code": "",
        "gateway_id": 100,
        "surcharge_amount": "FILTERED",
        "txn_flow_type": "FILTERED",
        "tax_amount": "FILTERED",
        "redirect": true
      },
      "bank_error_code": "",
      "udf8": "FILTERED",
      "payment_method_type": "CARD",
      "rewards_breakup": "FILTERED",
      "customer_phone": "FILTERED",
      "merchant_id": "ms",
      "customer_email": "FILTERED",
      "udf2": "",
      "amount": 8,
      "refunded": false,
      "refunds": [
        {
          "error_message": "Refund Success",
          "unique_request_id": "erf_b0c764a743c4221b",
          "created": "2023-08-10T07:22:01Z",
          "status": "SUCCESS",
          "id": null,
          "refund_type": "STANDARD",
          "pg_processed_at": "FILTERED",
          "sent_to_gateway": true,
          "refund_source": "DUMMY",
          "ref": "55430487",
          "error_code": "00",
          "amount": 5,
          "initiated_by": "ms"
        }
      ],
      "card": "FILTERED"
    }
  }
}

```

#### TXN_CREATED Code Snippet:

```txn_created
{
  "id": "evt_V2_324dc6e110914184a1c764923e14ccde",
  "event_name": "TXN_CREATED",
  "date_created": "2023-08-10T07:00:46Z",
  "content": {
    "order": {
      "offers": [],
      "txn_id": "ms-sample_ord_200-1",
      "udf7": "",
      "payment_method": "VISA",
      "txn_uuid": "moziqFZtYKQkTsRFGXX",
      "metadata": {
        "payment_page_client_id": "FILTERED",
        "merchant_payload": "{\"customerPhone\":\"999999999\",\"customerEmail\":\"1111111\"}",
        "payment_page_sdk_payload": "FILTERED",
        "payment_links": {
          "web": "https://api.juspay.in/orders/ordeh_a9eb2884e4fe4738b70c3d51e6397d34/payment-page",
          "iframe": "https://api.juspay.in/orders/ordeh_a9eb2884e4fe4738b70c3d51e6397d34/payment-page",
          "mobile": "https://api.juspay.in/orders/ordeh_a9eb2884e4fe4738b70c3d51e6397d34/payment-page"
        }
      },
      "udf5": "",
      "status_id": 23,
      "amount_refunded": 0,
      "udf9": "",
      "gateway_reference_id": null,
      "status": "PENDING_VBV",
      "bank_error_message": "",
      "id": "ordeh_a9eb2884e4fe4738b70c3d51e6397d34",
      "auth_type": "THREE_DS",
      "udf3": "",
      "udf6": "",
      "udf10": "",
      "effective_amount": 1,
      "product_id": "",
      "bank_pg": null,
      "order_id": "sample_ord_200",
      "return_url": "https://shop.merchant.com",
      "udf1": "",
      "currency": "INR",
      "udf4": "",
      "customer_id": "FILTERED",
      "date_created": "1111111T07:00:40Z",
      "gateway_id": 100,
      "payment_links": {
        "web": "https://api.juspay.in/merchant/pay/ordeh_a9eb2884e4fe4738b70c3d51e6397d34",
        "iframe": "https://api.juspay.in/merchant/ipay/ordeh_a9eb2884e4fe4738b70c3d51e6397d34",
        "mobile": "https://api.juspay.in/merchant/pay/ordeh_a9eb2884e4fe4738b70c3d51e6397d34?mobile=true"
      },
      "txn_detail": {
        "express_checkout": true,
        "txn_id": "ms-sample_ord_200-1",
        "txn_amount": 1,
        "error_message": "",
        "txn_uuid": "moziqFZtYKQkTsRFGXX",
        "created": "2023-08-10T07:00:46Z",
        "metadata": { "payment_channel": "WEB", "microapp": "hyperpay" },
        "gateway": "DUMMY",
        "status": "PENDING_VBV",
        "net_amount": 1,
        "order_id": "sample_ord_200",
        "currency": "INR",
        "error_code": null,
        "gateway_id": 100,
        "surcharge_amount": null,
        "txn_flow_type": "FILTERED",
        "tax_amount": null,
        "redirect": true
      },
      "bank_error_code": "",
      "udf8": "",
      "payment_method_type": "CARD",
      "rewards_breakup": null,
      "customer_phone": "FILTERED",
      "merchant_id": "ms",
      "customer_email": "FILTERED",
      "udf2": "",
      "amount": 1,
      "refunded": false,
      "card": "FILTERED"
    }
  }
}

```

#### NOTIFICATION_SUCCEEDED Code Snippet:

```notification_succeeded
{
  "id": "evt_V2_9380da4b07e74b6792f3fe23ed84a75f",
  "event_name": "NOTIFICATION_SUCCEEDED",
  "date_created": "2023-08-10T10:48:09Z",
  "content": {
    "notification": {
      "object": "notification",
      "last_updated": "1691664489",
      "provider_name": "FILTERED",
      "status": "SUCCESS",
      "id": "24307339",
      "mandate": { "mandate_id": "ii76ncZXa2tceXdeyCFqaM" },
      "source_object": "MANDATE",
      "date_created": "1691662587",
      "notification_type": "FILTERED",
      "source_info": { "txn_date": "1691818137", "amount": "1.0" },
      "provider_response": "FILTERED",
      "object_reference_id": "sCh7ihFFGLJKayCW"
    }
  }
}

```

#### MANDATE_CREATED Code Snippet:

```mandate_created
{
  "id": "evt_V2_14596cec6cd34c6380212cc3115030cb",
  "event_name": "MANDATE_CREATED",
  "date_created": "2023-08-16T09:02:30Z",
  "content": {
    "mandate": {
      "amount_rule": "VARIABLE",
      "last_updated": "2023-08-16T09:01:59Z",
      "frequency": "ASPRESENTED",
      "status": "CREATED",
      "revokable_by_customer": true,
      "order_id": "ord_1692176519ms",
      "end_date": "1789934557",
      "start_date": "1692169687",
      "currency": "INR",
      "customer_id": "FILTERED",
      "payment_info": "FILTERED",
      "block_fund": false,
      "max_amount": 100,
      "mandate_type": "MANDATE",
      "mandate_id": "c1ZJDKT3YXUhxubgKhkom8",
      "mandate_token": "FILTERED"
    }
  }
}

```

#### ORDER_SUCCEEDED (MANDATE) Code Snippet:

```order_succeeded (mandate)
{
  "id": "evt_gsu1c0r7umcfrxeb",
  "date_created": "2015-06-03T10:42:25Z",
  "event_name": "ORDER_SUCCEEDED",
  "content": {
    "order": {
      "udf9": "",
      "udf8": "",
      "udf7": "",
      "udf6": "",
      "udf5": "",
      "udf4": "",
      "udf3": "",
      "udf2": "",
      "udf10": "",
      "udf1": "",
      "txn_uuid": "eulmyxQn6bQso6y1Syy",
      "txn_id": "juspay-234823498237423894273498-1",
      "txn_detail": {
        "txn_uuid": "eulmyxQn6bQso6y1Syy",
        "txn_object_type": "EMANDATE_REGISTER",
        "txn_id": "juspay-234823498237423894273498-1",
        "txn_amount": 1,
        "tax_amount": null,
        "surcharge_amount": null,
        "status": "CHARGED",
        "source_object_id": "91887",
        "source_object": "MANDATE",
        "redirect": true,
        "order_id": "234823498237423894273498",
        "net_amount": 1,
        "gateway_id": 19,
        "gateway": "PAYTM_V2",
        "express_checkout": false,
        "error_message": "",
        "error_code": "",
        "currency": "INR",
        "created": "2020-08-30T09:53:17Z"
      },
      "status_id": 21,
      "status": "CHARGED",
      "return_url": "https://api.juspay.in",
      "refunded": false,
      "product_id": "",
      "payment_method_type": "UPI",
      "payment_method": "UPI",
      "payment_links": {
        "web": "https://api.juspay.in/merchant/pay/ordeu_9a0929803da644df8036133cf14d0206"
      },
      "payment_gateway_response": {
        "txn_id": "juspay-234823498237423894273498-1",
        "rrn": "4299662",
        "resp_message": "Txn Success",
        "resp_code": "01",
        "epg_txn_id": "202008301131312168187301880189",
        "created": "2020-08-30T09:54:10Z",
        "auth_id_code": ""
      },
      "payer_vpa": "9999999999@paytm",
      "order_id": "234823498237423894273498",
      "metadata": {
        "PAYTM_V2:gateway_reference_id": "upimandate"
      },
      "merchant_id": "juspay",
      "mandate": {
        "start_date": "1598745600",
        "rule_value": 30,
        "rule_type": "AFTER",
        "revokable_by_customer": true,
        "max_amount": 1000,
        "mandate_type": "EMANDATE",
        "mandate_token": "ad1d28b13f460fb5d348487be790f3",
        "mandate_status": "ACTIVE",
        "mandate_id": "3XMEcS1z2212Gq7fbfVYbzj",
        "frequency": "MONTHLY",
        "end_date": "1606521610",
        "block_fund": false,
        "amount_rule": "VARIABLE"
      },
      "id": "ordeu_9a0929803da644df8036133cf14d0206",
      "gateway_reference_id": "upimandate",
      "gateway_id": 19,
      "date_created": "2020-08-30T09:47:46Z",
      "customer_phone": "9999999999",
      "customer_id": "cst_lz7zmpemoo5okv",
      "customer_email": "customer@gmail.com",
      "currency": "INR",
      "bank_error_message": "",
      "bank_error_code": "",
      "auth_type": "",
      "amount_refunded": 0,
      "amount": 1
    }
  }
}

```



---

## See Also

- [Refund Order API](https://juspay.io/in/docs/payv3/web/base-integration/refund-order-api)
- [Additional S2S APIs](https://juspay.io/in/docs/payv3/web/base-integration/other-server-apis)
