POST
/
integration
curl --request POST \
  --url https://api.wirespeed.co/integration \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "size": 123,
  "page": 123,
  "filter": "<string>",
  "search": "<string>",
  "orderBy": "<string>",
  "orderDir": "asc",
  "includeDisabled": true
}'
{
  "data": [
    {
      "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": {}
    }
  ],
  "totalCount": 123
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

200
application/json

The response is of type object.