GET
/
integration
/
{id}
curl --request GET \
  --url https://api.wirespeed.co/integration/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "platform": "microsoft-teams",
  "enabled": true,
  "teamId": "<string>",
  "teamName": "<string>",
  "config": {
    "authType": "oauth2",
    "name": "<string>",
    "oauthRequiresRedirect": true,
    "customFields": [
      {
        "slug": "<string>",
        "display": "<string>",
        "type": "<string>",
        "required": true,
        "description": "<string>",
        "validationPattern": "<string>",
        "validationMinLength": 123,
        "validationMaxLength": 123,
        "source": "<string>"
      }
    ],
    "requiresConfiguration": true,
    "logo": "<string>",
    "logoLight": "<string>",
    "logoDark": "<string>",
    "beta": true,
    "description": "<string>",
    "slug": "<string>",
    "internalCreds": true,
    "docsUrl": "<string>",
    "default": true
  },
  "permissionsUpdateAvailable": true,
  "requiresConfiguration": "<string>",
  "identityFields": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Integration ID

Response

200
application/json

The response is of type object.