Skip to main content
POST
/
webhooks
Create a new webhook
curl --request POST \
  --url https://api.argil.ai/v1/webhooks \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "callbackUrl": "<string>",
  "events": [
    "AVATAR_TRAINING_SUCCESS"
  ]
}'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "callbackUrl": "<string>",
  "events": [
    "AVATAR_TRAINING_SUCCESS"
  ],
  "createAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "lastTriggeredAt": "2023-11-07T05:31:56Z"
}

Authorizations

x-api-key
string
header
required

API key to be included in the x-api-key header

Body

application/json
callbackUrl
string
required

URL to which the webhook will send POST requests.

events
enum<string>[]
required

List of events the webhook is subscribing to.

Minimum length: 1

Response

Successfully created webhook

id
string<uuid>
callbackUrl
string
events
enum<string>[]

List of events the webhook is subscribing to.

Minimum length: 1
createAt
string<date-time>
updatedAt
string<date-time>
lastTriggeredAt
string<date-time>
I