Get VCS 3rd Party Webhooks
GET/code/api/v1/apps-webhooks/webhooks
Get an inventory of third-party webhooks found in your organization’s version control system (VCS).
Request
Responses
- 200
webhooks
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
createdAt double
Webhook creation date
customerName stringrequired
Customer Prisma ID
domain stringrequired
Webhook URL domain
id stringrequired
VCS App ID
isSSLVerificationEnabled boolean
Webhook SSL verification enabled/disabled
name stringrequired
VCS App name
nodeCreatedTimestamp double
timestamp doublerequired
triggers string[]required
Webhook events triggers
type stringrequired
Possible values: [VCSWebhook
]
url stringrequired
Webhook URL
vendorCreatedTimestamp double
Webhook creation date
webhookType stringrequired
Webhook type
workspaceId string
VCS workspace/integration ID
[
{
"createdAt": 0,
"customerName": "string",
"domain": "string",
"id": "string",
"isSSLVerificationEnabled": true,
"name": "string",
"nodeCreatedTimestamp": 0,
"timestamp": 0,
"triggers": [
"string"
],
"type": "VCSWebhook",
"url": "string",
"vendorCreatedTimestamp": 0,
"webhookType": "string",
"workspaceId": "string"
}
]
Loading...