Advice Transaction

Advisement Request

Use the following to build the request.

  1. ) Make a JSON object {} .
  2. ) Add and set the messageType to "0120".
  3. ) Add and set the responseCode to "00".
  4. ). Add and set the transactionType to "00".
  5. ) Add and set the referenceNumber with a valid account.
  6. ) Add and set the expirationMonth as MM.
  7. ) Add and set the expirationYear as YY.
  8. ) Add and set amountTransaction to the amount, in cents, of how much the transaction will be for. example, For $2.50, type in 250.
  9. ) Add and set the unique token for access.

Authorization request example for a purchase of $24.79.

{"messageType": "0120"  
  ,"responseCode": "00"  
  , "transactionType": "00"  
  , "referenceNumber": "000000000000"
  , "expirationMonth" :"03"  
  , "expirationYear": "26"  
  , "amountTransaction": "2479"  
  , "token" : "UUID"
}

Transaction request

If the authorization response code is not 00 or 10 then the transaction request is not required, instead you should reverse the authorization described in the "Authorization Reversal" page. If a 00 or 10 responseCode is received from the authorization response, then the transaction to exchange the money can be made.

1.) Change the messageType to 0200.

2.) Add the parameter authorizationIdentificationResponse to the reversal JSON request and set to the authorizationIdentificationResponse from the authorization response (0100) .

3.) The response code should be mirrored from the responseCode (00 or 10).

Financial Transaction request example for a purchase of $24.79.

{"messageType": "0200"  
  ,"responseCode": "00"  
  , "transactionType": "00"  
  , "referenceNumber": "000000000000"
  , "expirationMonth" :"03"  
  , "expirationYear": "26"  
  , "amountTransaction": "2479"  
  , "token": "UUID"
  , "authorizationIdentificationResponse": "from 0120"
}
Language
Click Try It! to start a request and see the response here!