Update Account Limits
Account
Update Account Limits
Configure account-specific operational limits for rate limiting and batch processing
POST
Update Account Limits
To update account-specific operational limits (like daily profile visits, search limits, or batch size), use this endpoint. The
params object contains the updated values for batch size, daily limits per action, or time gaps between batches.
Parameter Keys
| Param Key | Type | Description |
|---|---|---|
| batch | integer | (Optional) Updated batch size per launch. Controls how many actions run per batch |
| batch_hours | integer | (Optional) Delay in hours between each batch run |
| [attribute] | integer | (Optional) Daily limit for the specific attribute like profiles, searches, or messages |
Headers
Your API authentication token. Value:
Token YOUR_API_KEYMust be application/json. Value:
application/jsonRequest Body
Account hash to update. Example:
"2372242060b59e03ac39f7691765bbf8"Account type identifier. Example:
"sales-nav-sync"Object containing limit parameters to update. Example:
{"batch": 20, "profiles": 150, "searches": 199, "batch_hours": 2}Response Field Explanations
Default account limits for this account type. Example:
{...}User-configured limits with current usage tracking. Example:
{...}Current batch count. Example:
0Timestamp of last batch execution. Example:
"18/07/2022 21:47:09"Current usage count for this attribute today. Example:
0Unix timestamp when the daily counter resets. Example:
1716508800The params.user object tracks real-time usage. Use it to monitor how close you are to daily limits.
Code Examples
Response
200
400
404