POST
/
webhooks
/
project
/
{project_id}
Create a Webhook
curl --request POST \
  --url https://mainnet.gomaestro-api.org/v1/webhooks/project/{project_id} \
  --header 'Content-Type: application/json' \
  --header 'api-key: <api-key>' \
  --data '{
  "name": "<string>",
  "url": "<string>"
}'
{
  "webhook_id": "<string>",
  "name": "<string>",
  "url": "<string>",
  "active": true
}

Authorizations

api-key
string
header
required

API key for authenticating requests.

Path Parameters

project_id
string
required

Unique project identifier.

Body

application/json

Response

201
application/json

Webhook created successfully.

The response is of type object.