Adding required information for specific payment methods
Learn how to add the information required to support a specific payment method.
Adding an organization identifier to a cart
curl --location --request POST 'https://api.digitalriver.com/shoppers/me/carts/active' \
--header 'Content-Type: application/json' \
--header 'authorization: Basic ***\
--data-raw '{
"cart": {
"organizationId": "Acme_Inc",
"lineItems": {
"lineItem":
{
"quantity": "1",
"product": {
"id": "5326162000"
}
}
}
}
}'{
"cart": {
...
"organizationId": "Acme_Inc"
}
}Removing an organization identifier from the cart
PreviousGetting the available payment methods for the cartNextCapturing the Terms of Sale (TOS) acceptance
Last updated