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

ParameterRequiredTypeDescription
clientIDyesstringTransactAPI Client ID
developerAPIKeyyesstringTransactAPI Developer Key
accountIdyesstringAccount ID that is generated by the API once an account is created (createAccount)
tradeIdyesstringTrade 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.
amountyesstringAmount
createdIpAddressyesstringIP 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

ParameterTypeDescription
statusCodestringAPI Status Code
statusDescstringAPI Status Description
transactionDetailsstringArray 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"		
	}
}

Test it Yourself!

Language
Click Try It! to start a request and see the response here!