API Count¶
All requests require clientID and developerAPIKey parameters for authentication.
Base URL: https://api-sandboxdash.norcapsecurities.com
Endpoints¶
POST /v3/getApiCount¶
This method will provide the API count for the current month (midnight UTC on the 1st to current day)
Example Request¶
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/v3/getApiCount
-d developerAPIKey=somedeveloperkey
-d clientID=someclientid
Response¶
| Field | Type | Description |
|---|---|---|
APICountDetails | string | Array of API Count Details |
clientID | string | TransactAPI Client ID |
apiCount | integer | Total number of API calls for the current month |
Example Response¶
{
"statusCode": "101",
"statusDesc": "Ok",
"APICountDetails": {
"clientId": "someclientid",
"apiCount": "1,058"
}
}