---
title: "Create integration"
method: POST
path: "/api/{cloudId}/v1/integrations"
tags: ["Integrations"]
---

# Create integration

`POST /api/{cloudId}/v1/integrations`

Creates an integration. It can be team or global integration by using teamId in the payload.
  
 **Permissions required:** Permission to create an integration:
 - the user has edit configuration right. 
 - the user is the admin of the team that the integration belongs to. 
  
 <br>*Slack* and *Microsoft Teams* types of integration are not supported for this operation.

## Request body

- CreateIntegrationRequest
  - `name` string, required — Name of the integration. Name must be unique for each integration.
  - `type` string, required — Type of the integration. (For instance, "API" for API Integration.
  - `description` string — Description of the integration.
  - `enabled` boolean — This parameter is for specifying whether the integration will be enabled or not. Defaults to false
  - `teamId` string — ID of the team that integration belongs to.
  - `typeSpecificProperties` object — Integration spesific properties may be provided to this object. For instance, this map may constist - *suppressNotifications* for incoming integrations - *emailUsername* for email integrations - *allowReadAccess* , *allowWriteAccess*, *allowDeleteAccess*, *allowConfigurationAccess* for API Integrations - some credential properties or tool spesific properties such as URLs for outgoing integrations

## Response `200`

Returned if the request is successful.

- Integration
  - `id` string — ID of the integration.
  - `type` string — Type of the integration.
  - `name` string — Name of the integration.
  - `enabled` boolean — Indicates whether the integration is enabled or not.
  - `teamId` string — ID of the team that integration belongs to.
  - `typeSpecificProperties` object — Integration specific properties.

## Other responses

- `401` — Returned if the authentication credentials are incorrect.
- `403` — Returned if the request user does not have permission to create integration.
- `422` — Returned if the payload cannot be validated.

---

[API](https://skmtc.net/atlassian/apis/jsm-operations-api.md) · [All operations](https://skmtc.net/atlassian/apis/jsm-operations-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/atlassian/jsm-operations-api/versions/ed65f017bcb8/schema)
