getApiCount

This method will provide the API count for the current month (midnight UTC on the 1st to current day)

Request Parameters

ParameterRequiredTypeDescription
developerAPIKeyyesstringTransactAPI Developer Key
clientIDyesstringTransactAPI Client ID

Sample Response

curl -k -X POST https://tapi-sandboxdash.norcapsecurities.com/getApiCount
 -d developerAPIKey=somedeveloperkey
 -d clientID=someclientid

Response Parameters

ParameterTypeDescription
statusCodestringAPI Status Code
statusDescstringAPI Status Description
APICountDetailsstringArray of API Count Details
clientIDstringTransactAPI Client ID
apiCountintegerTotal number of API calls for the current month

Sample Response

{
	"statusCode": "101",
	"statusDesc": "Ok",
	"APICountDetails": {
		"clientId": "someclientid",
		"apiCount": "1,058"
	}
}

Test it Yourself!

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