Initiating a charge

Learn how to specify the type of charge.

When creating or updating a Cart, the Commerce API calculates the chargeType based on the information set up in Global Commerce. You can use the chargeType parameter to tell Digital River whether you expect the payment source to be used for a customer-initiated, merchant-initiated, or mail/telephone-initiated transaction.

curl --location --request POST 'http://<<host>>/v1/shoppers/me/carts/active' \
--header 'Content-Type:  application/json' \
--header 'authorization: Basic ***\
--data-raw '{
  "cart": {
    "lineItems": {
      "lineItem": {
        "quantity": "2",
        "product": {
          "id": 1234
        }
      }
    },
    "chargeType": "moto"
  }
}'

Customer initiated

In this case, the cardholder actively participates in the transaction. A customer-initiated transaction is the most common charge type, representing the majority of online checkouts or invoices. During these transactions, the customer provides payment details when they submit the cart or uses stored payment information.

Can a CVV be used?Can 3DS measures be used?

Yes

Yes

Merchant initiated

A merchant_initiated transaction is submitted using stored payment details without the cardholder's active participation during the checkout or invoice process. This charge type can only occur when an agreement exists that allows the client to initiate payments on behalf of their customers.

Since Digital River acts as the authorized reseller of record, we initiate and process the transaction on your behalf. You, in turn, are acting on the behalf of your customer.

Subscription renewals and automated payments for water, sewer, gas, or electric utilities are common examples of this charge type.

Can a CVV be used?Can 3DS measures be used?

No

No

Mail order/telephone order

A Mail Order/Telephone Order (MOTO) is a payment card transaction initiated by mail, fax, or over the phone. In these moto transactions, customers provide you their payment details by regular mail, fax, or telephone. By passing this information to you, the customer authorizes you (who, in turn, authorizes Digital River) to process the transaction.

Can a CVV be used?Can 3DS measures be used?

Yes

No

Last updated