Infusionsoft (Keap) Settings API

The Settings API from Infusionsoft (Keap) — 3 operation(s) for settings.

Operations 6

GET /rest/v2/settings/contactOptionTypes Get Contact Option types #
GET /rest/v2/settings/applications:isEnabled Get Application Status #
GET /rest/v2/settings/applications:getConfiguration Get Application Configuration #
GET /v2/settings/applications:getConfiguration Get Application Configuration #
GET /v2/settings/applications:isEnabled Get Application Status #
GET /v2/settings/contactOptionTypes Get Contact Option types #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/infusionsoft-settings-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

infusionsoft-settings-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Infusionsoft Settings API
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
  version: '1.0'
  description: 'Operations tagged Settings across 4 of this provider''s published API definitions: infusionsoft-keap-sdk-v2-swagger-original.yml, infusionsoft-rest-v2-2025-11-05-openapi-original.json, infusionsoft-rest-v2-openapi-original.json, infusionsoft-rest-v2-openapi.json. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.keap.com/crm
- url: https://api.infusionsoft.com/crm/rest
- url: https://api.infusionsoft.com/crm
tags:
- name: Settings
paths:
  /rest/v2/settings/contactOptionTypes:
    get:
      tags:
      - Settings
      summary: Get Contact Option types
      description: Gets a list of Contact Option types.
      operationId: getContactOptionTypes
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetContactOptionTypesResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '405':
          description: Method Not Allowed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '409':
          description: Conflict
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '501':
          description: Method Not Implemented
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
      - oauth2: []
    servers:
    - url: https://api.keap.com/crm
  /rest/v2/settings/applications:isEnabled:
    get:
      tags:
      - Settings
      summary: Get Application Status
      description: Check if the application is enabled or not
      operationId: isApplicationEnabled
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetApplicationEnabledStatusResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '405':
          description: Method Not Allowed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '409':
          description: Conflict
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '501':
          description: Method Not Implemented
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
      - oauth2: []
    servers:
    - url: https://api.keap.com/crm
  /rest/v2/settings/applications:getConfiguration:
    get:
      tags:
      - Settings
      summary: Get Application Configuration
      description: Get configuration values for the application instance.
      operationId: getApplicationConfigurations
      parameters:
      - name: fields
        in: query
        description: By default, only application data is returned. In addition to that, data is returned for the fields that are mentioned in the query.
        required: false
        schema:
          type: array
          items:
            type: string
            enum:
            - AFFILIATE
            - APPOINTMENT
            - CONTACT
            - ECOMMERCE
            - EMAIL
            - FORMS
            - FULFILLMENT
            - INVOICE
            - NOTE
            - OPPORTUNITY
            - TASK
            - TEMPLATE
          uniqueItems: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetSettingsResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '405':
          description: Method Not Allowed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '409':
          description: Conflict
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '501':
          description: Method Not Implemented
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
      - oauth2: []
    servers:
    - url: https://api.keap.com/crm
  /v2/settings/applications:getConfiguration:
    get:
      tags:
      - Settings
      summary: Get Application Configuration
      description: Get configuration values for the application instance.
      operationId: getApplicationConfigurationsUsingGET
      parameters:
      - name: fields
        in: query
        description: By default, only application data is returned. In addition to that, data is returned for the fields that are mentioned in the query.
        allowEmptyValue: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
            enum:
            - AFFILIATE
            - APPOINTMENT
            - CONTACT
            - ECOMMERCE
            - EMAIL
            - FORMS
            - FULFILLMENT
            - INVOICE
            - NOTE
            - OPPORTUNITY
            - TASK
            - TEMPLATE
          enum:
          - AFFILIATE
          - APPOINTMENT
          - CONTACT
          - ECOMMERCE
          - EMAIL
          - FORMS
          - FULFILLMENT
          - INVOICE
          - NOTE
          - OPPORTUNITY
          - TASK
          - TEMPLATE
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                title: GetSettingsResponse
                type: object
                properties:
                  affiliate:
                    title: ApplicationConfigurationModuleAffiliate
                    type: object
                    properties:
                      choose_affiliate:
                        type: boolean
                      commission:
                        title: ApplicationConfigurationModuleAffiliateCommission
                        type: object
                        properties:
                          calculation_type:
                            type: string
                          levels:
                            type: integer
                            format: int32
                          participant_types:
                            type: string
                      custom_affiliate_url:
                        type: string
                      display_affiliate_ip_address:
                        type: boolean
                      do_not_notify_affiliate:
                        type: boolean
                      skip_pay_if_unused:
                        type: boolean
                      use_referral_history_if_no_tracking_cookie:
                        type: boolean
                  application:
                    title: ApplicationConfigurationModuleApplication
                    type: object
                    properties:
                      company:
                        title: ApplicationCompany
                        type: object
                        properties:
                          caller_id_number:
                            type: string
                          city:
                            type: string
                          country:
                            type: string
                          email:
                            type: string
                          name:
                            type: string
                          phone:
                            type: string
                          phone_ext:
                            type: string
                          state:
                            type: string
                          street_address_1:
                            type: string
                          street_address_2:
                            type: string
                          web_logo_url:
                            type: string
                          website:
                            type: string
                          zip:
                            type: string
                      default_view_locale:
                        type: string
                      features_enabled:
                        title: ApplicationFeaturesEnabled
                        type: object
                        properties:
                          marketing:
                            type: boolean
                      time_zone:
                        type: string
                  appointment:
                    title: ApplicationConfigurationModuleAppointment
                    type: object
                    properties:
                      appointment_types:
                        type: string
                      share_opportunity_with_related_user:
                        type: boolean
                  contact:
                    title: ApplicationConfigurationModuleContact
                    type: object
                    properties:
                      address_labels:
                        title: ApplicationConfigurationModuleContactAddressLabels
                        type: object
                        properties:
                          line_1:
                            type: string
                          line_2:
                            type: string
                          line_3:
                            type: string
                      contact_types:
                        type: string
                      default_new_contact_form:
                        type: string
                      disable_contact_edit_in_client_login:
                        type: boolean
                      fax_types:
                        type: string
                      phone_types:
                        type: string
                      suffix_types:
                        type: string
                      title_types:
                        type: string
                  ecommerce:
                    title: ApplicationConfigurationModuleEcommerce
                    type: object
                    properties:
                      credit_card_types:
                        type: string
                      currency:
                        type: string
                      default_charge_max_retry_attempts:
                        type: integer
                        format: int32
                      default_country:
                        type: string
                      default_merchant:
                        type: string
                      default_number_of_days_between_charge_attempts:
                        type: integer
                        format: int32
                      default_tax:
                        type: string
                      default_to_auto_charge:
                        type: boolean
                      merchant_account_max_retry_attempts:
                        type: integer
                        format: int32
                      payment_types:
                        type: string
                      promo_codes:
                        type: string
                      track_cost_per_unit:
                        type: boolean
                      track_inventory:
                        type: boolean
                  email:
                    title: ApplicationConfigurationModuleEmail
                    type: object
                    properties:
                      append_contact_key_to_links:
                        type: boolean
                      default_opt_in_link:
                        type: string
                      default_opt_out_link:
                        type: string
                      hide_emails_to_and_from_domains:
                        type: string
                      whitelisted_domains:
                        type: string
                  forms:
                    title: ApplicationConfigurationModuleForms
                    type: object
                    properties:
                      spam_filters_enabled:
                        type: boolean
                  fulfillment:
                    title: ApplicationConfigurationModuleFulfillment
                    type: object
                    properties:
                      default_message_fields:
                        type: string
                      default_message_to:
                        type: string
                  invoice:
                    title: ApplicationConfigurationModuleInvoice
                    type: object
                    properties:
                      tax_label:
                        type: string
                  note:
                    title: ApplicationConfigurationModuleNote
                    type: object
                    properties:
                      appointment_types:
                        type: string
                      share_opportunity_with_related_user:
                        type: boolean
                  opportunity:
                    title: ApplicationConfigurationModuleOpportunity
                    type: object
                    properties:
                      default_stage:
                        type: string
                      states:
                        title: ApplicationConfigurationModuleOpportunityStates
                        type: object
                        properties:
                          active:
                            title: ApplicationConfigurationModuleOpportunityStatesActive
                            type: object
                            properties:
                              stages:
                                type: string
                          loss:
                            title: ApplicationConfigurationModuleOpportunityStatesLoss
                            type: object
                            properties:
                              reasons:
                                type: string
                              stage:
                                type: string
                          win:
                            title: ApplicationConfigurationModuleOpportunityStatesWin
                            type: object
                            properties:
                              reasons:
                                type: string
                              stage:
                                type: string
                  task:
                    title: ApplicationConfigurationModuleTask
                    type: object
                    properties:
                      appointment_types:
                        type: string
                      share_opportunity_with_related_user:
                        type: boolean
                  template:
                    title: ApplicationConfigurationModuleTemplate
                    type: object
                    properties:
                      default_country_code:
                        type: integer
                        format: int32
                      default_user_id:
                        type: string
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                title: Error
                type: object
                properties:
                  cause:
                    title: Throwable
                    type: object
                    properties:
                      cause:
                        $ref: '#/components/schemas/Throwable'
                      localizedMessage:
                        type: string
                      message:
                        type: string
                      stackTrace:
                        type: array
                        items:
                          title: StackTraceElement
                          type: object
                          properties:
                            classLoaderName:
                              type: string
                            className:
                              type: string
                            fileName:
                              type: string
                            lineNumber:
                              type: integer
                              format: int32
                            methodName:
                              type: string
                            moduleName:
                              type: string
                            moduleVersion:
                              type: string
                            nativeMethod:
                              type: boolean
                      suppressed:
                        type: array
                        items:
                          $ref: '#/components/schemas/Throwable'
                  localizedMessage:
                    type: string
                  message:
                    type: string
                  stackTrace:
                    type: array
                    items:
                      title: StackTraceElement
                      type: object
                      properties:
                        classLoaderName:
                          type: string
                        className:
                          type: string
                        fileName:
                          type: string
                        lineNumber:
                          type: integer
                          format: int32
                        methodName:
                          type: string
                        moduleName:
                          type: string
                        moduleVersion:
                          type: string
                        nativeMethod:
                          type: boolean
                  suppressed:
                    type: array
                    items:
                      title: Throwable
                      type: object
                      properties:
                        cause:
                          $ref: '#/components/schemas/Throwable'
                        localizedMessage:
                          type: string
                        message:
                          type: string
                        stackTrace:
                          type: array
                          items:
                            title: StackTraceElement
                            type: object
                            properties:
                              classLoaderName:
                                type: string
                              className:
                                type: string
                              fileName:
                                type: string
                              lineNumber:
                                type: integer
                                format: int32
                              methodName:
                                type: string
                              moduleName:
                                type: string
                              moduleVersion:
                                type: string
                              nativeMethod:
                                type: boolean
                        suppressed:
                          type: array
                          items:
                            $ref: '#/components/schemas/Throwable'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                title: Error
                type: object
                properties:
                  cause:
                    title: Throwable
                    type: object
                    properties:
                      cause:
                        $ref: '#/components/schemas/Throwable'
                      localizedMessage:
                        type: string
                      message:
                        type: string
                      stackTrace:
                        type: array
                        items:
                          title: StackTraceElement
                          type: object
                          properties:
                            classLoaderName:
                              type: string
                            className:
                              type: string
                            fileName:
                              type: string
                            lineNumber:
                              type: integer
                              format: int32
                            methodName:
                              type: string
                            moduleName:
                              type: string
                            moduleVersion:
                              type: string
                            nativeMethod:
                              type: boolean
                      suppressed:
                        type: array
                        items:
                          $ref: '#/components/schemas/Throwable'
                  localizedMessage:
                    type: string
                  message:
                    type: string
                  stackTrace:
                    type: array
                    items:
                      title: StackTraceElement
                      type: object
                      properties:
                        classLoaderName:
                          type: string
                        className:
                          type: string
                        fileName:
                          type: string
                        lineNumber:
                          type: integer
                          format: int32
                        methodName:
                          type: string
                        moduleName:
                          type: string
                        moduleVersion:
                          type: string
                        nativeMethod:
                          type: boolean
                  suppressed:
                    type: array
                    items:
                      title: Throwable
                      type: object
                      properties:
                        cause:
                          $ref: '#/components/schemas/Throwable'
                        localizedMessage:
                          type: string
                        message:
                          type: string
                        stackTrace:
                          type: array
                          items:
                            title: StackTraceElement
                            type: object
                            properties:
                              classLoaderName:
                                type: string
                              className:
                                type: string
                              fileName:
                                type: string
                              lineNumber:
                                type: integer
                                format: int32
                              methodName:
                                type: string
                              moduleName:
                                type: string
                              moduleVersion:
                                type: string
                              nativeMethod:
                                type: boolean
                        suppressed:
                          type: array
                          items:
                            $ref: '#/components/schemas/Throwable'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                title: Error
                type: object
                properties:
                  cause:
                    title: Throwable
                    type: object
                    properties:
                      cause:
                        $ref: '#/components/schemas/Throwable'
                      localizedMessage:
                        type: string
                      message:
                        type: string
                      stackTrace:
                        type: array
                        items:
                          title: StackTraceElement
                          type: object
                          properties:
                            classLoaderName:
                              type: string
                            className:
                              type: string
                            fileName:
                              type: string
                            lineNumber:
                              type: integer
                              format: int32
                            methodName:
                              type: string
                            moduleName:
                              type: string
                            moduleVersion:
                              type: string
                            nativeMethod:
                              type: boolean
                      suppressed:
                        type: array
                        items:
                          $ref: '#/components/schemas/Throwable'
                  localizedMessage:
                    type: string
                  message:
                    type: string
                  stackTrace:
                    type: array
                    items:
                      title: StackTraceElement
                      type: object
                      properties:
                        classLoaderName:
                          type: string
                        className:
                          type: string
                        fileName:
                          type: string
                        lineNumber:
                          type: integer
                          format: int32
                        methodName:
                          type: string
                        moduleName:
                          type: string
                        moduleVersion:
                          type: string
                        nativeMethod:
                          type: boolean
                  suppressed:
                    type: array
                    items:
                      title: Throwable
                      type: object
                      properties:
                        cause:
                          $ref: '#/components/schemas/Throwable'
                        localizedMessage:
                          type: string
                        message:
                          type: string
                        stackTrace:
                          type: array
                          items:
                            title: StackTraceElement
                            type: object
                            properties:
                              classLoaderName:
                                type: string
                              className:
                                type: string
                              fileName:
                                type: string
                              lineNumber:
                                type: integer
                                format: int32
                              methodName:
                                type: string
                              moduleName:
                                type: string
                              moduleVersion:
                                type: string
                              nativeMethod:
                                type: boolean
                        suppressed:
                          type: array
                          items:
                            $ref: '#/components/schemas/Throwable'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                title: Error
                type: object
                properties:
                  cause:
                    title: Throwable
                    type: object
                    properties:
                      cause:
                        $ref: '#/components/schemas/Throwable'
                      localizedMessage:
                        type: string
                      message:
                        type: string
                      stackTrace:
                        type: array
                        items:
                          title: StackTraceElement
                          type: object
                          properties:
                            classLoaderName:
                              type: string
                            className:
                              type: string
                            fileName:
                              type: string
                            lineNumber:
                              type: integer
                              format: int32
                            methodName:
                              type: string
                            moduleName:
                              type: string
                            moduleVersion:
                              type: string
                            nativeMethod:
                              type: boolean
                      suppressed:
                        type: array
                        items:
                          $ref: '#/components/schemas/Throwable'
                  localizedMessage:
                    type: string
                  message:
                    type: string
                  stackTrace:
                    type: array
                    items:
                      title: StackTraceElement
                      type: object
             

# --- truncated at 32 KB (78 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/infusionsoft/refs/heads/main/openapi/infusionsoft-settings-api-openapi.yml