| PROPERTY | DESCRIPTION |
|---|---|
| apiKey | Api key. |
| cardToken | Card token. |
| cvv | 3 digits for Visa and Mastercard cards, 4 digits for American Express cards. |
| amount | Amount of the transaction. |
{
"apiKey": "ojLGcX1ioiAA8FkAAETcOxoAApkpBcQfki80AAAHSsVvA",
"cardToken": "ntY50io0uijCQGnjVH49DSuc-41kI6y0_WgmYzZcShQAA17r1RPbXqGdFfApcNq73iU1vwAA8Fk0oplw",
"cvv": "111",
"amount": 100
}| PROPERTY | DESCRIPTION |
|---|---|
| apiKey | . |
| cardToken | Card token. |
| cvv | 3 digits for Visa and Mastercard cards, 4 digits for American Express cards. |
| amount | Amount of the transaction. |
| txnType | Send the value checkIn. |
Note: you have 20 days to capture an authorization. After that time, the held funds will be released by the issuing bank back to the cardholder.
{
"apiKey": "ojLGcX1ioiAA8FkAAETcOxoAApkpBcQfki80AAAHSsVvA",
"cardToken": "ntY50io0uijCQGnjVH49DSuc-41kI6y0_WgmYzZcShQAA17r1RPbXqGdFfApcNq73iU1vwAA8Fk0oplw",
"cvv": "111",
"amount": 100,
"txnType": "checkIn"
}| PROPERTY | DESCRIPTION |
|---|---|
| apiKey | Api key. |
| cardToken | Card token. |
| cvv | 3 digits for Visa and Mastercard cards. |
| amount | Amount of the transaction. |
| txnType | Send the value recurring. |
| contractNumber | Contract number. |
Note: American Express cards are not supported for recurring transactions.
{
"apiKey": "ojLGcX1ioiAA8FkAAETcOxoAApkpBcQfki80AAAHSsVvA",
"cardToken": "ntY50io0uijCQGnjVH49DSuc-41kI6y0_WgmYzZcShQAA17r1RPbXqGdFfApcNq73iU1vwAA8Fk0oplw",
"cvv": "111",
"amount": 100,
"txnType": "recurring",
"contractNumber": "contract123"
}| PROPERTY | DESCRIPTION |
|---|---|
| apiKey | Api key. |
| cardToken | Card token. |
| cvv | 3 digits for Visa and Mastercard cards. |
| amount | Amount of the transaction. |
| txnType | Send the value recurringCheckIn. |
| contractNumber | Contract number. |
Note: American Express cards are not supported in recurring checkIn transactions.
{
"apiKey": "ojLGcX1ioiAA8FkAAETcOxoAApkpBcQfki80AAAHSsVvA",
"cardToken": "ntY50io0uijCQGnjVH49DSuc-41kI6y0_WgmYzZcShQAA17r1RPbXqGdFfApcNq73iU1vwAA8Fk0oplw",
"cvv": "111",
"amount": 100,
"txnType": "recurringCheckIn",
"contractNumber": "contract123"
}| PROPERTY | DESCRIPTION |
|---|---|
| apiKey | Api key. |
| cardToken | Card token. |
| cvv | 3 digits for Visa and Mastercard cards, 4 digits for American Express cards. |
| amount | Amount of the transaction. |
| paymentPlan | Amount of installments. |
{
"apiKey": "ojLGcX1ioiAA8FkAAETcOxoAApkpBcQfki80AAAHSsVvA",
"cardToken": "ntY50io0uijCQGnjVH49DSuc-41kI6y0_WgmYzZcShQAA17r1RPbXqGdFfApcNq73iU1vwAA8Fk0oplw",
"cvv": "111",
"amount": 600,
"paymentPlan": 3
}| PROPERTY | DESCRIPTION |
|---|---|
| apiKey | Api key. |
| cardToken | Card token. |
| amount | Amount of the transaction. |
| amexCustAddress | Cardholder Billing Address. |
| amexCustFirstName | Cardholder First Name. |
| amexCustLastName | Cardholder Last Name. |
| amexCustEmailAddr | Cardholder Email Address. |
| amexCustBrowserTypDescTxt | Customer user agent. |
| amexCustHostServerNm | Customer Host Server Name. |
| amexCustIdPhoneNbr | Cardholder Phone Number. |
| amexCustIPAddr | Customer IP Address. |
| amexCustPostalCode | Cardholder Billing Postal Code. |
| amexMerSKUNbr | Merchant SKU Number. |
{
"apiKey": "ojLGcX1ioiAA8FkAAETcOxoAApkpBcQfki80AAAHSsVvA",
"cardToken": "ntY50io0uijCQGnjVH49DSuc-41kI6y0_WgmYzZcShQAA17r1RPbXqGdFfApcNq73iU1vwAA8Fk0oplw",
"amount": 100,
"amexCustAddress": "18850 N 56 ST APT301",
"amexCustFirstName": "JANE",
"amexCustLastName" : "SMITH",
"amexCustEmailAddr": "jane@smith.com",
"amexCustBrowserTypDescTxt": "MOZILLA/4.0~(COMPATIBLE;~MSIE~5.0; ~WINDOWS~95",
"amexCustHostServerNm" : "comercio.com",
"amexCustIdPhoneNbr" : "3333333333",
"amexCustIPAddr" : "169.10.10.10",
"amexCustPostalCode" : "00001",
"amexMerSKUNbr" : "MYSKU0001"
}cardReq object instead of sending the cardToken property with the card token.| PROPERTY | DESCRIPTION |
|---|---|
| apiKey | Api key. |
| cardReq | Object with card information. |
| cardReq.pan | Primary Account Number. |
| cardReq.cvv2 | 3 digits for Visa and Mastercard cards, 4 digits for American Express cards. |
| cardReq.expDate | Expiration date (YYMM). |
| amount | Amount of the transaction. |
{
"apiKey": "ojLGcX1ioiAA8FkAAETcOxoAApkpBcQfki80AAAHSsVvA",
"cardReq" : {
"pan" : "4000000000000002",
"cvv2" : "111",
"expDate" : "3012"
},
"amount": 100
}curl --location --request POST '/scops/txn' \
--header 'Content-Type: application/json' \
--data-raw '{
"apiKey": "ojLGcX1ioiAA8FkAAETcOxoAApkpBcQfki80AAAHSsVvA",
"cardToken": "ntY50io0uijCQGnjVH49DSuc-41kI6y0_WgmYzZcShQAA17r1RPbXqGdFfApcNq73iU1vwAA8Fk0oplw",
"cvv": "111",
"amount": 100
}'{
"status": -3,
"message": "Invalid field contract number in non-recurring txn\r\n"
}