Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

On This Page

Table of Contents

...

To configure these parameters for a specific connection, follow these steps:

  1. Create the connection using the connector-specific authentication flow

  2. 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

  3. 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
    }
  }
}

...