Webhook
Obtener lista de webhooks
Contactos - Operaciones Básicas
Contactos - Gestión de Items
Contactos - Gestión de Tags
Contactos - Estados
Etiquetas (Tags)
Facturas
Webhook
Obtener lista de webhooks
Obtener lista de webhooks
GET
/
webhook
curl --request GET \
--url https://api.fint.app/api/v1/webhook \
--header 'x-api-key: <api-key>'
{
"webhooks": [
{
"id": 123,
"url": "<string>",
"active": true,
"events": [
"payment.created"
],
"createdAt": "<string>",
"externalReference": "<string>"
}
]
}
Authorizations
Response
200
application/json
Webhooks recuperados con éxito
Available options:
payment.created
, contact.status
, contact.active
, contact.inactive
, subscription.created
, subscription.updated
, subscription.cancelled
curl --request GET \
--url https://api.fint.app/api/v1/webhook \
--header 'x-api-key: <api-key>'
{
"webhooks": [
{
"id": 123,
"url": "<string>",
"active": true,
"events": [
"payment.created"
],
"createdAt": "<string>",
"externalReference": "<string>"
}
]
}