Data element
splitResponse
| Key | Format | CND | Description |
|---|---|---|---|
ans..30 | M | MerchantID, assigned by Computop | |
an32 | M | ID assigned by Paygate for the payment, e.g. for referencing in batch files as well as for capture or credit request. | |
an32 | M | ID for all single transactions (authorisation, capture, credit note) for one payment assigned by Paygate | |
ans..64 | M | TransactionID provided by you which should be unique for each payment | |
schemeReferenceID | ans..64 | C | Card scheme specific transaction ID required for subsequent credential-on-file payments, delayed authorizations and resubmssions. |
Status | a..20 | M | Status of the transaction. Values accepted:
In case of Authentication-only the Status will be either OK or FAILED. |
ans..1024 | M | Further details in the event that payment is rejected. Please do not use the Description but the Code parameter for the transaction status analysis! | |
an8 | M | Error code according to Paygate Response Codes (A4 Error codes) |
Sample
1{2 "splitResponse": [3 {4 "MID": "Merchant1",5 "PayID": "PayID1",6 "XID": "XID1",7 "TransID": "TransID1",8 "schemeReferenceID": "SchemeRef1",9 "Status": "OK",10 "Code": "00000000",11 "Description": "success"12 },13 {14 "MID": "Merchant2",15 "PayID": "PayID2",16 "XID": "XID2",17 "TransID": "TransID2",18 "schemeReferenceID": "SchemeRef2",19 "Status": "FAILED",20 "Code": "20000000",21 "Description": "system error"22 }23 ]24}