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

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

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

Test it Yourself!

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