Create a hook
curl --request POST \
--url https://gogs.example.com/api/v1/repos/{owner}/{repo}/hooks \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"config": {
"url": "<string>",
"secret": "<string>"
},
"events": [
"push"
],
"active": false
}
'{
"id": 123,
"type": "gogs",
"events": [
"<string>"
],
"active": true,
"config": {},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}Webhooks
Create a hook
POST
/
repos
/
{owner}
/
{repo}
/
hooks
Create a hook
curl --request POST \
--url https://gogs.example.com/api/v1/repos/{owner}/{repo}/hooks \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"config": {
"url": "<string>",
"secret": "<string>"
},
"events": [
"push"
],
"active": false
}
'{
"id": 123,
"type": "gogs",
"events": [
"<string>"
],
"active": true,
"config": {},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}Authorizations
Personal access token. Use format: token {YOUR_ACCESS_TOKEN}
Body
application/json