- Authorize Module(authorize)
- User Module(user)
- Organization Module(org)
- Project Module(project)
- Issue Module(issue)
- Get Issue Type List
- Get Issue Scheme
- Get Issue Fields
- Get Issue Field Detail
- Batch Add Issue
- New Issue
- Batch Update Issue
- Update Issue
- Get Issue Detail V2
- Get Issue Detail
- Get Issue Detail By Issue Number
- Remove Issue
- Batch Remove Issue
- Query Issue List
- Query Issue List V2
- Get Project Issue Filter Fields
- Get Issue Select Options
- Get Issue Relations
- Add Issue Relation
- Remove Issue Relation
- Batch Add Subtasks
- Remove Subtask
- Update Subtask
- Get Subtask List
- Update Subtask Status
- Get Subtask Field List
- Add Labour Record
- Update Labour Record
- Remove Labour Record
- Labour Record List
- Get Trash Select Option List(The free version does not support)
- Get Trash List(The free version does not support)
- Restore Issue(The free version does not support)
- Get Finished Issue List
- Sprint Module(sprint)
- Workflow Module(workflow)
- Tag Module(tag)
- Epic Module(epic)
- Version Module(version)
- Webhook Module(webhook)
- Comment Module(comment)
- File Module(file)
- Personal Message Module(msg)
Update Webhook
PATCH
https://app.leiga.com/openapi/api/webhook/update
Webhook Module(webhook)
Request
Header Params
Content-Type
string
required
Example:
application/json
accessToken
string
required
Example:
{{accessToken}}
Body Params application/json
webhookId
integer <int64>
required
signature
string
optional
name
string
required
state
string
required
type
string
required
eventIds
array[integer <int64>]
optional
url
string
required
Example
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH 'https://app.leiga.com/openapi/api/webhook/update' \
--header 'accessToken: ' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200OK
application/json
Body
createBy
integer <int64>
optional
webhookId
integer <int64>
optional
signature
string
optional
createTime
string <date>
optional
name
string
optional
state
string
optional
type
string
optional
projectId
integer <int64>
optional
url
string
optional
events
array [object {5}]
optional
eventCode
string
optional
eventId
integer <int64>
optional
typeName
string
optional
eventName
string
optional
typeCode
string
optional
Example
{
"code": "0",
"data": {
"createBy": 1,
"webhookId": 1,
"signature": "xxx",
"createTime": 1646301600000,
"name": "xxx",
"state": "disabled",
"type": "dingTalk",
"projectId": 1,
"url": "https://xxx.xxx.com/callback",
"events": [
{
"eventCode": "create",
"eventId": 1,
"typeName": "xxx",
"eventName": "xxx",
"typeCode": "issue"
}
]
}
}
Modified at 2024-06-12 06:46:49