Skip to main content

Test WebHook

Used to help debug your webhook url. If you get a correct response, your webhook will officially receive messages from luxfin.

GET/payment/test_webhook

Authentication

Authorization: Bearer <YOUR_API_key>

Response Fields

Please refer to the webhook for the data Luxfin sends to your endpoint

{
  "order_id": 0,
  "status": "SUCCESS",
  "amount": 0.01,
  "product": "test product"
}

Request Samples

    curl -X GET https://luxfin.org/payment/test_webhook \
-H "Authorization: Bearer YOUR_API_KEY"