Get organization configuration

GET /organization

Get configured details for your organization

Responses

  • Organization

    Hide response attributes Show response attributes object
    • organization_id string Required

      The Canopy-generated ID for the organization.

    • created_at string(date-time) Required

      The Date-Time that this organization was created on the server.

    • logo_url string

      Organization's logo URL.

    • features object

      Feature settings for your organization

      Hide features attribute Show features attribute object
      • If true, all entity ids (account_id, customer_id, product_id, etc.) should be communicated with your organization's identifier for that resource. Otherwise, Canopy-generated ID's should be used. See document versioning for additional details.

    • organization_overview object Required

      General organization details.

      Hide organization_overview attributes Show organization_overview attributes object
    • Hide issuer_processors attribute Show issuer_processors attribute object
      • Lithic API configurations.

        Hide lithic_config attribute Show lithic_config attribute object
    • Hide payment_processors attributes Show payment_processors attributes object
      • Repay API configurations.

        Hide repay_config attributes Show repay_config attributes object
        • api_user string

          Your Repay API user key.

        • Your Repay API access key.

        • The merchant config value obtained from the corresponding payment processor.

      • Checkout.com API configurations.

        Hide checkout_config attributes Show checkout_config attributes object
        • secret_key string | null

          Checkout.com secret key.

        • public_key string | null

          Checkout.com public key

        • A processing channel is the equivalent of a business line. In order to process your transactions you may need to denote which processing channel to process the transaction request on.

      • Dwolla API configurations.

        Hide dwolla_config attributes Show dwolla_config attributes object
      • Modern Treasury API configurations.

        Hide modern_treasury_config attributes Show modern_treasury_config attributes object
      • Authorize.net API configurations.

        Hide authorize_net_config attributes Show authorize_net_config attributes object
    • Hide credit_reporting attributes Show credit_reporting attributes object
  • Unauthorized.

  • Forbidden.

  • Invalid input

  • Too many requests.

  • Unexpected Error.

GET /organization
curl \
 -X GET https://sandbox-api.canopyservicing.com/organization \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "organization_id": "31mNprzLd2bKl6koVna68ARM",
  "created_at": "2019-03-20T09:12:28+00:00",
  "logo_url": "https://cdn.domain/image.webp",
  "features": {
    "strict_entity_client_id": true
  },
  "organization_overview": {
    "organization_name": "LeverCard 3000",
    "webhook_url": "https://mycallbackurlhandler.com/canopy",
    "address_name": "string",
    "address_line_one": "string",
    "address_line_two": "string",
    "address_city": "string",
    "address_state": "string",
    "address_zip": "string"
  },
  "issuer_processors": {
    "lithic_config": {
      "api_key": "YOUR_API_KEY"
    }
  },
  "payment_processors": {
    "repay_config": {
      "api_user": "string",
      "api_token": "string",
      "merchant_id": "87397472"
    },
    "checkout_config": {
      "secret_key": "sk_512313123",
      "public_key": "pk_123123121",
      "processing_channel_id": "string"
    },
    "dwolla_config": {
      "app_key": "string",
      "app_secret": "string",
      "master_account": "string"
    },
    "modern_treasury_config": {
      "api_key": "string",
      "org_id": "string",
      "originating_account_id": "string"
    },
    "authorize_net_config": {
      "merchant_name": "string",
      "transaction_key": "string"
    }
  },
  "credit_reporting": {
    "transunion_program_identifier": "5555555555",
    "experian_program_identifier": "5555555555",
    "equifax_program_identifier": "5555555555",
    "program_date": "1985-06-20",
    "reporter_name": "Acme Corporation",
    "reporter_address_line_one": "12 Strawberry Road",
    "reporter_address_line_two": "Suite 101",
    "reporter_address_city": "Atlanta",
    "reporter_address_state": "GA",
    "reporter_address_zip": "99999-1000",
    "reporter_phone_number": "+14105556789"
  }
}
Response examples (200)
{
  "organization_id": "31mNprzLd2bKl6koVna68ARM",
  "created_at": "2019-03-20T09:12:28+00:00",
  "logo_url": "https://cdn.domain/image.webp",
  "features": {
    "strict_entity_client_id": true
  },
  "organization_overview": {
    "organization_name": "LeverCard 3000",
    "webhook_url": "https://mycallbackurlhandler.com/canopy",
    "address_name": "string",
    "address_line_one": "string",
    "address_line_two": "string",
    "address_city": "string",
    "address_state": "string",
    "address_zip": "string"
  },
  "issuer_processors": {
    "lithic_config": {
      "api_key": "YOUR_API_KEY"
    }
  },
  "payment_processors": {
    "repay_config": {
      "api_user": "string",
      "api_token": "string",
      "merchant_id": "87397472"
    },
    "checkout_config": {
      "secret_key": "sk_512313123",
      "public_key": "pk_123123121",
      "processing_channel_id": "string"
    },
    "dwolla_config": {
      "app_key": "string",
      "app_secret": "string",
      "master_account": "string"
    },
    "modern_treasury_config": {
      "api_key": "string",
      "org_id": "string",
      "originating_account_id": "string"
    },
    "authorize_net_config": {
      "merchant_name": "string",
      "transaction_key": "string"
    }
  },
  "credit_reporting": {
    "transunion_program_identifier": "5555555555",
    "experian_program_identifier": "5555555555",
    "equifax_program_identifier": "5555555555",
    "program_date": "1985-06-20",
    "reporter_name": "Acme Corporation",
    "reporter_address_line_one": "12 Strawberry Road",
    "reporter_address_line_two": "Suite 101",
    "reporter_address_city": "Atlanta",
    "reporter_address_state": "GA",
    "reporter_address_zip": "99999-1000",
    "reporter_phone_number": "+14105556789"
  }
}