post https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/ccFundMovement
Online Credit Card Fund Move 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. Unlike ccFundMove, this method includes an amount field which allows for a payment amount differing from the trade amount (up to 7% over).
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 | string | Trade ID that is generated by the API once a trade is created (createTrade). A trade must be created before the 'ccFundmovement' method can be performed. |
amount | yes | string | Amount |
createdIpAddress | yes | string | IP Address associated with the ccFundMovement method call. |
Sample Request
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/ccFundMovement
-d developerAPIKey=somedeveloperkey
-d clientID=someclientid
-d accountId=A49501
-d tradeId=66564702
-d amount=1000
-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 ccFundMovement |
Sample Response
{
"statusCode": "101",
"statusDesc": "Ok",
"transactionDetails": {
"accountId":"A11501",
"tradeId":"181669328",
"offeringId":"64104",
"totalAmount":"700.000000",
"ccreferencenumber":"017742724",
"fundStatus":"Pending",
"transactionstatus":"Pending"
}
}