Configure issuer processor information for your organization

View as Markdown
PUT /organization/issuer_processors
application/json

Body

Set your issuer processor configurations for your organization.

  • lithic_config object
    Hide lithic_config attribute Show lithic_config attribute object
    • api_key string

      API key for your organization in Lithic. You can generate this in your Lithic dashboard as a self-service option.

Responses

  • 200 application/json

    Issuer processor configuration for your organization

    Hide response attribute Show response attribute object
    • lithic_config object
      Hide lithic_config attribute Show lithic_config attribute object
      • api_key string

        API key for your organization in Lithic. You can generate this in your Lithic dashboard as a self-service option.

  • 401

    Unauthorized.

  • 403

    Forbidden.

  • 422

    Invalid input

  • 429

    Too many requests.

  • default

    Unexpected Error.

PUT /organization/issuer_processors
curl \
 --request PUT 'https://sandbox-api.canopyservicing.com/organization/issuer_processors' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"lithic_config":{"api_key":"a328j23l-61n0-k123-44b4-jj11ooo3b0uu"}}'
Request examples
{
  "lithic_config": {
    "api_key": "a328j23l-61n0-k123-44b4-jj11ooo3b0uu"
  }
}
Response examples (200)
{
  "lithic_config": {
    "api_key": "a328j23l-61n0-k123-44b4-jj11ooo3b0uu"
  }
}