How AI is applied across API Evangelist and APIs.io. Read my AI disclosure →
API Evangelist API Evangelist
Discovery
Learnings
Guidance
Toolbox
Alignment
API Evangelist LLC

iBanFirst Webhook subscriptions API

**1. WHAT IS A WEBHOOK ?** - Webhooks are events based real-time notifications providing updates on transactions and removing the need for periodic polling. - Webhook notifications are sent as HTTPS POST requests to a URL of your choice.**2. WEBHOOK SUBSCRIPTIONS** - Each webhook subscription allows you to receive notifications for one or more event types : - **Outgoing payment :**`PAYMENT_PLANIFIED` `PAYMENT_FINALIZED` `PAYMENT_WAITING_SIGNATURE` `PAYMENT_AWAITING_CONFIRMATION` `PAYMENT_CANCELED` `PAYMENT_BLOCKED` `PAYMENT_WAITING_JUSTIFICATION` `PAYMENT_INCOMING` - **Spot trade** : `TRADE_PLANIFIED` `TRADE_FINALIZED` `TRADE_CANCELED` `TRADE_BLOCKED` - You may have up to 10 active subscriptions at the same time. **3. IMPLEMENTATION** - **Delivery and retries** - Webhook notifications may not be delivered in order, your implementation should not assume sequential delivery. - If a notification delivery fails (HTTP status code 400 or 500), it will be retried twice, with a 60-second delay between attempts. This results in a maximum of three delivery attempts per event. - **Acknowledgement** - We recommend responding with a HTTP `204` code (No Content) to acknowledge receipt of a notification. - **Whitelisting** - To ensure webhook notifications reach your URL, you may need to whitelist the following IP (production and demo): **51.158.86.1**. **4. SECURITY**- Each webhook notification includes an HMAC-256 signature in the request header to let you **validate its authenticity**. - To verify the signature, recontruct the signed message by concatenating the exact timestamp and request raw body as received : `x-ibanfirst-timestamp.{Body}`. - Compute an HMAC-SHA256 hash of this string using the subscription secret key and compare the result with the `x-ibanfirst-signature` provided in the notification header. - You must **reject** the notification if the signatures do not match. - Recommended best practices : - Always validate the signature before processing any webhook notification. - Webhook notification payloads must be stored on a private server to protect sensitive data.**5. WEBHOOK NOTIFICATION CONTENT** Notifications contain the relevant object as described in each reconciliation service. - [Get payment details](https://docs.ibanfirst.com/api/clientapi/payments/paths/~1payments~1%7Bid%7D/get) - [Get trade detail](https://docs.ibanfirst.com/api/clientapi/trades/paths/~1trades~1%7Bid%7D/get)```json{ "event": event_label, "payload": { see get payment details, get trade details },"webhookId": "e35b6e8d-67ef-4973-945d-c3190a60d0aa"}```

iBanFirst Webhook subscriptions API is one of 11 APIs that iBanFirst publishes on the APIs.io network, described by a machine-readable OpenAPI specification.

Tagged areas include Webhook Subscriptions. The published artifact set on APIs.io includes an OpenAPI specification, API documentation, an API reference, a getting-started guide, and authentication docs.

This API exposes 7 operations across 4 paths, and defines 7 schemas. It is described by OpenAPI 3.2.0, at version 1.6.0.

Requests are made against a single base URL, https://api-demo.ibanfirst.com/api.

7 operations 4 paths 7 schemas 1 DELETE3 GET1 PATCH2 POST

Metadata

The identity and technical contract details declared by the specification.

Specification
OpenAPI 3.2.0
API Version
1.6.0
Base URL
https://api.ibanfirst.com/api
Authentication
API Key
Resource Areas
1

Authentication & Security 1

iBanFirst Webhook subscriptions API declares 1 security scheme for authenticating requests. An API key is passed in the header as X-WSSE (X-WSSE). By default, every request must be authenticated.

  • X-WSSE — X-WSSE token-based authentication. The header value must be computed fresh for every request (tokens expire in ~5 minutes). Header value format: UsernameToken…

Paths & Operations 7

Across 4 paths, the API surfaces 7 operations — 1 DELETE, 3 GET, 1 PATCH, 2 POST. Each is listed below with its method, path, parameters, and response codes.

Webhook subscriptions 7

1. WHAT IS A WEBHOOK ? - Webhooks are events based real-time notifications providing updates on transactions and removing the need for periodic polling. - Webhook notifications ar…

POST
/webhooks
Create webhook subscription
body → 200default
GET
/webhooks
Get webhook subscriptions list
→ 200default
GET
/webhooks/{webhookId}
Get webhook subscription details
1 param → 200default
PATCH
/webhooks/{webhookId}
Update webhook subscription
1 param body → 200default
DELETE
/webhooks/{webhookId}
Cancel webhook subscription
1 param → 204default
POST
/webhooks/{webhookId}/rotate-secret
Rotate secret
1 param → 200default
GET
/webhooks/{webhookId}/failed-notifications
Get failed notifications
6 params → 200default

Schemas 7

The contract defines 7 schemas that model the data the API accepts and returns. The most detailed are webhookFailedNotification (6 properties), Error (4 properties), notificationContent (3 properties), Webhook (3 properties). Each schema is shown below with its type and property counts.

url
string
Notifications are sent to this url.
events
array
Error
object
Representation of an error.
4 properties
webhookId
string
ID of the webhook subscription.
Webhook
object
Representation of a webhook subscription.
3 properties
webhookFailedNotification
object
6 properties
notificationContent
object
3 properties

Specification

The full machine-readable OpenAPI contract behind this narrative.

Source

ibanfirst-webhook-subscriptions-api-openapi.yml Raw ↑

Other APIs iBanFirst publishes across the network.

iBanFirst MCP Connector
iBanFirst PSD2 XS2A API
iBanFirst Accounts API
iBanFirst Beneficiaries API
iBanFirst Documents API
iBanFirst Financial movements API
iBanFirst Fixed forward payment contract API
iBanFirst Logs API
iBanFirst Payments API
iBanFirst Spot trades API
Where this information came from

This is an independent, third-party profile of iBanFirst Webhook subscriptions API, published by API Evangelist. We do not operate, host, resell, or support these APIs, and we are not affiliated with or endorsed by the company unless stated above. Everything here is built from publicly available information — the company's own site, developer portal, documentation, public repositories, and the specifications it publishes for public use. Nothing is obtained by breaching a system, defeating an access control, or using credentials.

The Kin Score and Agent Readiness rating are independently calculated assessments of a company's public API artifacts, scored against a published rubric. They are not certifications, endorsements, security assessments, or audits.

Corrections, re-scores, and removal are free — no partnership or purchase required, and you do not need to justify the request. A removed company is recorded as unrated, never scored zero for having asked. Acknowledgement within one business day; removal within two.

info@apievangelist.com · Read the full data-sourcing policy →
On a security or compliance team? Put security in the subject line and you will get a person, not a form — we will tell you exactly which public URLs this profile was built from.