Webhook

Get or Set the url where you want to receive webhook notifications when a request has completed successfully (status == 100)

POST

https://api.autocontentapi.com/content/Webhook

curl -X 'POST' \
  'https://api.autocontentapi.com/Content/Webhook' \
  -H 'accept: */*' \
  -H 'Authorization: Bearer YOUR_TOKEN_HERE' \
  -H 'Content-Type: application/json' \
  -d '{
  "url": "https://hook.eu2.make.com/glnwiaetcwptnru3p2u8ciztybarhike"
}'

GET

https://api.autocontentapi.com/content/Webhooks

curl -X 'GET' \
  'https://api.autocontentapi.com/content/Webhooks' \
  -H 'accept: */*' \
  -H 'Authorization: Bearer YOUR_TOKEN_HERE'

Sample Response:

[
  {
    "url": "https://hook.eu2.make.com/glvwiuetcwptnru2p2u8ciztybar",
    "id": 22,
    "createdOn": "2025-02-22T20:58:30.86"
  },
  {
    "url": "https://hook.eu2.make.com/glvwiuetcwptnru2p2u8ciztyret",
    "id": 54,
    "createdOn": "2025-02-25T20:58:30.86"
  }
]

Returns the endpoint where the api will notify podcast completions.

WEBHOOK DATA

It returns the same data as the Get Status request

Last updated