post https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/ccFundMove
Online Credit Card TransactionThis Method has third party fees associated with it that will be charged for each use. This method is used to perform an online credit card transaction. Transactions are batch processed each business day at 6pm ET. The maximum amount per transaction is $5,000.00. This method creates a payment for the exact trade amount. If a payment needs to be created for a specific amount that does not match the trade amount, see ccFundMovement.
Request Parameters
Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | TransactAPI Client ID |
developerAPIKey | yes | string | TransactAPI Developer Key |
accountId | yes | string | Account ID that is generated by the API once an account is created (createAccount) |
tradeId | yes | integer | Trade ID that is generated by the API once a trade is created (createTrade). A trade must be created before the 'ccFundmove' method can be performed. |
createdIpAddress | yes | string | IP Address associated with the ccFundMove method call. |
Sample Request
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/ccFundMove
-d developerAPIKey=somedeveloperkey
-d clientID=someclientid
-d accountId=A49501
-d tradeId=66564702
-d createdIpAddress=10.0.0.1
Response Parameters
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
transactionDetails | string | Array of transaction details of the credit card number |
Sample Response
{
"statusCode": "101",
"statusDesc": "Ok",
"transactionDetails": {
"accountId":"A11501",
"tradeId":"181669328",
"offeringId":"64104",
"totalAmount":"700.000000",
"ccreferencenumber":"017742724",
"fundStatus":"Pending",
"transactionstatus":"Pending"
}
}