Chargeback.fetchByMerchantTransactionId
Web Session Object
Transaction Object
Token Object
Season Set Object
Refund Object
RatePlan Object
Product Object
Payment Provider Object
Payment Method Object
NameValuePair Object
GiftCard Object
Entitlement Object
Chargeback Object
Campaign Object
BillingPlan Object
AutoBill Object
Address Object
Activity Object
Account Object
Chargeback.fetchByMerchantTransactionId
The fetchByMerchantTransactionId method returns one or more Chargeback objects for the transaction whose ID assigned by you (merchantTransactionId) matches the input. Multiple chargebacks may be associated with one transaction, because a customer can charge back a transaction’s line items separately.
Input
srd: sparse response description, a SOAP string (which must be a JSON object), in which you specify the elements you want returned.This parameter enables the calling system to constrain a method call to return only components you specify. This gives you greater control over returned content, and improves response time within the Vindicia platform by reducing the processing needed for the call.
Some fields are required, either practically or in the WSDL, and will be returned regardless of the srd. A null srd returns the complete response.
merchantTransactionId: your ID (merchantTransactionId) of the transaction whose chargebacks you wish to fetch.
Output
return: an object of type Return that indicates the success or failure of the call.
chargebacks: an array of one or more Chargebacks associated with the transaction whose ID matches the one specified as the input parameter.
Returns
In addition to those listed in Standard Return Codes, this call returns:
Return Code |
Return String |
400 |
One of the following:
|
Example
$cb = new Chargeback();
$ret = $cb->fetchByMerchantTransactionId($txnId);
if ($ret['returnCode'] == 200) {
$fetchedChargebacks = $ret['chargebacks'];
if ($fetchedChargebacks != null) {
foreach ($fetchedChargebacks as $chargeback) {
// process a fetched chargeback here …
$status = $chargeback->getStatus();
$amount = $chargeback->getAmount();
}
}
}
For Users
Learn More