JAZZCASH

Prev Next

JAZZCASH is a payment system that allows customers to make purchases by using the provider payment form and the payment form of the merchant, as well as receive payouts.

Supported Transaction Types

  • Authorisation

  • Purchase

  • Capture

  • Void

  • Refunds

  • Withdrawals

Integrations Supported

  • Direct Connect

Withdrawal

  • Direct Connect

Currencies & Countries Supported

Title

Description

Currencies Supported

PKR

Countries Supported

Pakistan

Additional attributes to process JAZZCASH via Monetix

You must include the following JSON Attributes in the payload. These attributes inform us to proceed with the redirection to finalise the payment process.

Description

Hosted Payment Page

Direct Connect (Withdrawals only)

Transaction type

"TransactionType": "PURC",

"TransactionType": "ORIGINALCREDIT",

Force Transaction Routing

“Routing”:{

"ForcePayment": "MONETIX”

}

“Routing”:{

"ForcePayment": "MONETIX”

}

Client Details

"Client": {

   "FirstName": "Joe",

   "LastName": "Borg",

   "City": "TestCity",

   "Street": "fakestreet 123",

   "Email": "TestEmail@Email.com",

   "ClientAccount": "testing",

   "IPAddress": "1.1.1.1"

 }

"Client": {

   "Email": "TestEmail@Email.com",

   "FirstName": "Joe",

   "LastName": "Bloggs",

   "City": "MagicCity",

   "IPAddress": "127.0.0.1",

   "ClientAccount": "ApcoTest",

   "MobileNo": "79999999994"

 }

Payment Method Data

"PaymentMethodData": {

   "PaymentMethod": "JAZZCASH"

 }

"PaymentDestination": {

   "PaymentMethod": "AlternativePaymentMethods",

   "PaymentMethodData": {

     "PaymentMethod": "JAZZCASH",

     "AccountNumber":"123456879"

   }

Test Indicator (required in Sandbox Environment only)

"isTest”: true

"isTest”: true

Sample Request for Deposit

{
  "TransactionType": "PURC",
  "Amount": "10.00",
  "Currency": "PKR",
  "OrderReference": "Monetix test",
  "RedirectionURL": "https://www.yourURLhere.com/Redirect/",
  "CallBackURL": "https://www.yourURLhere.com/Listener",
  "Routing": {
    "ForcePayment": "MONETIX"
  },
  "IsTest": "True",
  "Client": {
    "FirstName": "Joe",
    "LastName": "Borg",
    "City": "TestCity",
    "Street": "fakestreet 123",
    "Email": "TestEmail@Email.com",
    "ClientAccount": "testing",
    "IPAddress": "1.1.1.1"
  },
  "PaymentMethodData": {
    "PaymentMethod": "JAZZCASH"
  },
  "Configuration": {
    "Profile": "showandedit"
  }
}

Sample request for a Payout

{
  "TransactionType": "ORIGINALCREDIT",
  "Amount": "100.00",
  "Currency": "PKR",
  "OrderReference": "Monetix payout test",
  "IsTest": true,
  "RedirectionURL": "https://www.yourURLhere.com/Redirect/",
  "CallBackURL": "https://www.yourURLhere.com/Listener",
  "Client": {
    "Email": "TestEmail@Email.com",
    "FirstName": "Joe",
    "LastName": "Bloggs",
    "City": "MagicCity",
    "IPAddress": "127.0.0.1",
    "ClientAccount": "ApcoTest",
    "MobileNo": "79999999994"
  },
  "PaymentDestination": {
    "PaymentMethod": "AlternativePaymentMethods",
    "PaymentMethodData": {
      "PaymentMethod": "JAZZCASH",
      "AccountNumber":"123456879"
    }
  },
  "Routing": {
    "ForcePayment": "MONETIX"
  }
}