Update an organization's Plaid client credentials.

PUT /organization/plaid_config
application/json

Body

Update the Plaid client credentials for an organization

  • client_id string Required

    Plaid-issued client id.

  • secret string Required

    Plaid-issue secret.

Responses

  • 200

    Updated Plaid credentials.

  • 401

    Unauthorized.

  • 403

    Forbidden.

  • 404

    Not found.

  • 429

    Too many requests.

  • default

    Unexpected Error.

PUT /organization/plaid_config
curl \
 --request PUT 'https://sandbox-api.canopyservicing.com/organization/plaid_config' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"client_id":"52091yd3ss886p112mc32xa9","secret":"ce830da06d1fbbf76adec01e2ced2c"}'
Request examples
{
  "client_id": "52091yd3ss886p112mc32xa9",
  "secret": "ce830da06d1fbbf76adec01e2ced2c"
}