Options

Use the options service to request the minimum amount, maximum amount, and currency for the day from your Afterpay and Clearpay account.

Endpoints

Set the
apOptionsService_run
field to
true
, and send the request to one of these endpoints:
Production:
https://ics2ws.ic3.com/commerce/1.x/transactionProcessor
Test:
https://ics2wstest.ic3.com/commerce/1.x/transactionProcessor

Example: Options Service with XML

Light Dark
Request
123456789
<="urn:schemas-cybersource-com:transaction-data-1.213"> <merchantID>test_merchant</merchantID> <merchantReferenceCode>refnum-1234</merchantReferenceCode> <apPaymentType>afp</apPaymentType> <apOptionsService run="true"> <limit>3</limit> <offset>2</offset> </apOptionsService> </>
Response to a Successful Request
12345678910111213141516171819202122232425262728293031323334353637
<:c="urn:schemas-cybersource-com:transaction-data-1.213"> <merchantReferenceCode>123456</merchantReferenceCode> <requestID>6246005374346859304083</requestID> <decision>ACCEPT</decision> <reasonCode>100</reasonCode> <apOptionsReply> <reasonCode>100</reasonCode> <responseCode>00000</responseCode> <offset>0</offset> <count>6</count> <totalCount>6</totalCount> <option data="0"> <id>6</id> <name>1000.00</name> </option> <option data="1"> <id>5</id> <name>Maximum Amount</name> </option> <option data="2"> <id>4</id> <name>1.00</name> </option> <option data="3"> <id>3</id> <name>Minimum Amount</name> </option> <option data="4"> <id>2</id> <name>USD</name> </option> <option data="5"> <id>1</id> <name>Currency</name> </option> </apOptionsReply> </>