Get connection rate limit info
GET/customers/:customer_id/connections/:provider_name/_rate_limit_info
Get rate limit info for a connection. This endpoint is only available for salesforce and apollo connections.
Request
Path Parameters
customer_id stringrequired
provider_name provider_namerequired
Possible values: [hubspot
, salesforce
, pipedrive
, zendesk_sell
, ms_dynamics_365_sales
, zoho_crm
, capsule
, outreach
, gong
, apollo
, salesloft
, intercom
, linear
, clearbit
, 6sense
, marketo
, salesforce_marketing_cloud_account_engagement
, slack
]
Responses
- 200
Connection rate limit info
- application/json
- Schema
- Example (from schema)
Schema
daily object
limit integerrequired
remaining integerrequired
reset_time integer
The time (in epoch seconds) at which the rate limit will reset. If missing, the rate limit is a sliding window.
hourly object
limit integerrequired
remaining integerrequired
reset_time integer
The time (in epoch seconds) at which the rate limit will reset. If missing, the rate limit is a sliding window.
other object
property name* single_rate_limit_info
limit integerrequired
remaining integerrequired
reset_time integer
The time (in epoch seconds) at which the rate limit will reset. If missing, the rate limit is a sliding window.
{
"daily": {
"limit": 1000,
"remaining": 900,
"reset_time": 1615219200
},
"hourly": {
"limit": 1000,
"remaining": 900,
"reset_time": 1615219200
},
"other": {}
}
Loading...