Login
Login
Field Name | Len | Type | Req | Ver | Comments |
method | N/A | Alp-Num | Yes | 1.1 | login |
fromEmail | N/A | Alp-Num | Yes | 1.1 | The email associated with your account |
key | N/A | Alp-Num | Yes | 1.1 | MD5(sharedSecret + fromEmail) |
This request is responded by a message with the following content:
Field Name | Len | Type | Mdt | Ver | Comments |
ResponseCode | N/A | Alp-Num | Yes | 1.1 | The response code; 00 = Success; |
ResponseDescription | N/A | Alp-Num | Yes | 1.1 | Human readable response |
Fee | N/A | Real | Yes | 1.1 | Fee for the current transaction |
Customer/ CustomerType | N/A | Real | Yes | 1.1 | 0 = Personal
1 = Business |
Request Sample:
https://secure.paxum.com/payment/api/paymentAPI.php POST method=login&fromEmail=payee%40domain.com&key=7d4420a8b447cb9c3cb1c29bea7ba707
Response Sample
<?xml version="1.0"?> <Response> <Environment>PRODUCTION</Environment> <Method>login</Method> <ResponseCode>00</ResponseCode> <ResponseDescription>Approved or Completed Successfully</ResponseDescription > <Fee>0.00</Fee> <Customer> <CustomerType>1</CustomerType> </Customer> </Response>
Working Sample(s):
login.php