Contactos - Operaciones Básicas
Contactos - Gestión de Items
Contactos - Gestión de Tags
Contactos - Estados
Etiquetas (Tags)
Facturas
Webhook
Crear un nuevo webhook
Crear un nuevo webhook
POST
/
webhook
curl --request POST \
--url https://api.fint.app/api/v1/webhook \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"url": "<string>",
"events": [
"payment.created"
],
"externalReference": "<string>"
}'
{
"id": 123
}
Authorizations
Body
application/json
Response
201
application/json
Webhook creado con éxito
The response is of type object
.
curl --request POST \
--url https://api.fint.app/api/v1/webhook \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"url": "<string>",
"events": [
"payment.created"
],
"externalReference": "<string>"
}'
{
"id": 123
}
Assistant
Responses are generated using AI and may contain mistakes.