Skip to main content
POST
/
v1
/
webhook_endpoints
Create a webhook endpoint
curl --request POST \
  --url https://api.infinitecreator.com/v1/webhook_endpoints \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "url": "<string>"
}
'
{
  "url": "<string>",
  "id": "<string>",
  "secret": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
url
string<uri>
required

The URL of the webhook endpoint.

Required string length: 1 - 2083

Response

Successful Response

url
string<uri>
required

The URL of the webhook endpoint.

Required string length: 1 - 2083
id
string
required

Unique identifier for the object.

secret
string
required

The endpoint's secret, used to generate webhook signatures. Only returned at creation.

Last modified on January 7, 2026