...
On This Page
Table of Contents |
---|
...
To configure these parameters for a specific connection, follow these steps:
Create the connection using the connector-specific authentication flow
Using Postman or other ReST client and the ID of the connection created in step one, make the request
GET /v1/connections/<id>?include=auth
Finally make the following request using the response body from step 2 and the applicable new
"rate_limit"
parameters added to the"auth"
section of the request body (see across for an example):PATCH /v1/connections/<id>
Code Block |
---|
{ "auth": { ...all previous parameters "rate_limit": { "min_rate": 15, "max_rate": 75 } } } |
...