POST
/
v1
/
webhooks
curl --request POST \
  --url https://api.gofermata.com/v1/webhooks \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "type": "<string>",
  "url": "<string>"
}'
{
  "data": "<any>"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json
type
string
url
string

Response

200 - application/json
OK
data
any