v1

latestOpenAPI 3.0.02026-07-141,4077,1665.2 MB
Entity Integration Configs

Get an entity integration configuration

Retrieve the configuration currently stored for a given integration in the caller's organization.

get/api/v2/idp/entity_integrations/{integration_id}

Path parameters

integration_idstring required
Example:github

The identifier of the integration whose configuration is being managed. Supported values are github, jira, and pagerduty.

Response

OK

Example response

{
  "data": {
    "attributes": {
      "config": {
        "enabled_repos": [
          {
            "github_org_name": "myorg",
            "hostname": "github.com",
            "repo_name": "myrepo"
          }
        ]
      },
      "integration_id": "github",
      "org_id": 1234
    },
    "id": "01HJABCD12345678ABCDEFGHIJ",
    "type": "entity_integration_configs"
  }
}