post https://tapi-sandboxdash.norcapsecurities.com/getApiCount
This method will provide the API count for the current month (midnight UTC on the 1st to current day)
Request Parameters
Parameter | Required | Type | Description |
---|---|---|---|
developerAPIKey | yes | string | TransactAPI Developer Key |
clientID | yes | string | TransactAPI Client ID |
Sample Response
curl -k -X POST https://tapi-sandboxdash.norcapsecurities.com/getApiCount
-d developerAPIKey=somedeveloperkey
-d clientID=someclientid
Response Parameters
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
APICountDetails | string | Array of API Count Details |
clientID | string | TransactAPI Client ID |
apiCount | integer | Total number of API calls for the current month |
Sample Response
{
"statusCode": "101",
"statusDesc": "Ok",
"APICountDetails": {
"clientId": "someclientid",
"apiCount": "1,058"
}
}