VLUK Payment API
    • Merchant Dashboard
    • Sale Request
      POST
    • Status Request
      POST
    • Refund Request
      POST
    • Schemas
      • Schemas
        • Sale
        • Merchant
        • Customer
        • Billing
        • Billing-Card
        • Webhooks
        • Refund-Transaction

      Status Request

      POST
      /api/v1/status
      Get transaction status for sale / refund transaction.

      Request

      Body Params application/json

      Examples

      Responses

      🟢200OK
      application/json
      Body

      🟠422Validation Error
      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location --request POST '/api/v1/status' \
      --header 'Content-Type: application/json' \
      --data-raw '{
          "merchant": {
              "id": "M-01K746TGTZ4Y5YJG5EPF3DE057",
              "site-id": "S-01K746TJSGRJBZ2BK6MPX54AN8",
              "password": "hwOmLFLWhbty"
          },
          "transaction": {
              "id": "T-99JHTG4PVZ8GRCDM4PVZ8GRCDM"
          }
      }'
      Response Response Example
      200 - OK
      {
          "type": "valid",
          "merchant": {
              "id": "M-01K746TGTZ4Y5YJG5EPF3DE057",
              "site-id": "S-01K746TJSGRJBZ2BK6MPX54AN8"
          },
          "result": {
              "type": "sale",
              "status": "approved",
              "code": "0",
              "message": "Test Card OK.",
              "transaction-id": "T-99JHTG4PVZ8GRCDM4PVZ8GRCDM",
              "descriptors": [
                  "DESC1",
                  "DESC2"
              ]
          }
      }
      Previous
      Sale Request
      Next
      Refund Request
      Built with