Issues
- issue_created- Issue created model
- issue_updated- Issue updated model
issue_created
Payload data sent after Issue creation.
Properties
| Property | Type | Format | Required | Description | 
|---|---|---|---|---|
| type | string | true | Payload type ( issue_created) | |
| actionUserId | string | UUID | true | User identifier | 
| actionExternalUserId | string | false | User external identifier | |
| projectId | string | UUID | true | Project identifier | 
| projectExternalId | string | false | Project external identifier | |
| data | Issue | – | true | Created payload data | 
Example
{
  "type": "issue_created",
  "projectId": "310c5fda-906d-4f44-bf4d-a51d5ef55b99",
  "projectExternalId": "1",
  "actionUserId": "110c5fda-226d-4f44-bf4d-a11d5ef55b33",
  "actionExternalUserId": "externalId",
  "data": {
    "id": "3f582b1f-0ea4-46aa-b6c2-03a68b8e7805",
    "externalId": "1"
  }
}
issue_updated
Payload data sent after Issue details update. List of fields that will trigger this webhook on change:
- title
- description
- isPrivate
Properties
| Property | Type | Format | Required | Description | 
|---|---|---|---|---|
| type | string | true | Payload type ( issue_updated) | |
| actionUserId | string | UUID | true | User identifier | 
| actionExternalUserId | string | false | User external identifier | |
| projectId | string | UUID | true | Project identifier | 
| projectExternalId | string | false | Project external identifier | |
| data | Issue | – | true | Updated payload data | 
Example
{
  "type": "issue_updated",
  "projectId": "310c5fda-906d-4f44-bf4d-a51d5ef55b99",
  "projectExternalId": "1",
  "actionUserId": "110c5fda-226d-4f44-bf4d-a11d5ef55b33",
  "actionExternalUserId": "externalId",
  "data": {
    "id": "3f582b1f-0ea4-46aa-b6c2-03a68b8e7805",
    "externalId": "1"
  }
}