action configcat_jira_add_or_update_integration_link { label: "jira-add-or-update-integration-link" provider: configcat method: POST path: "/v1/jira/environments/{environmentId}/settings/{settingId}/integrationLinks/{key}" encoding: json input: { type: "object" properties: { clientKey: { type: "string" } description: { type: "string" } environmentId: { type: "string" format: "uuid" } jiraJwtToken: { type: "string" } key: { type: "string" } settingId: { type: "integer" format: "int32" } url: { type: "string" } } required: ["clientKey", "environmentId", "jiraJwtToken", "key", "settingId"] additionalProperties: false } output: { type: "object" properties: { description: { type: "string" } integrationLinkType: { type: "string" enum: ["trello", "jira", "monday"] } key: { type: "string" } url: { type: "string" } } additionalProperties: false } }