Sazabi
APIIntegrations

Update Linear issue automation configuration

PATCH
/integrations/connections/{connectionId}/linear-automation

Set the Linear team, optional project, and per-severity ticket creation rules for detected issues.

Path Parameters

connectionId*string

Linear integration connection ID.

Formatuuid

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X PATCH "https://example.com/integrations/connections/497f6eca-6276-4993-bfeb-53cbbbba6f08/linear-automation" \  -H "Content-Type: application/json" \  -d '{    "enabled": true,    "teamId": "string",    "projectId": "string",    "severityRules": {      "low": "create",      "medium": "create",      "high": "create",      "critical": "create"    }  }'
{  "connectionId": "84b500d7-71c8-4b1f-adf4-f1eb0000973d",  "enabled": true,  "teamId": "string",  "projectId": "string",  "severityRules": {    "low": "create",    "medium": "create",    "high": "create",    "critical": "create"  }}