Webhook Services

Overview

Our webhook solution ensures that your system receives real-time notifications regarding specific events triggered within the NI system, based on your subscription to the different webhooks.

Version

Card Replacement

Status:

Production

Version:

V2

Category:

Webhook

Overview

This webbook serves to promptly inform your system whenever a card replacement occurs. This helps ensure that important card management activities are communicated accurately and on time. Card replacements are crucial in banking because they affect customer accounts, security, and transaction abilities.

How It Works

Upon detection of a relevant card replacement action, regardless of the channel that was used for this action, the webhook initiates a notification process after checking the subscribers for this event.

To be able to receive this webhook notification, you must subscribe to it, and by default you are not.

Subscribers will be defined while create the financial institution in our system, or after creating.

This webbook serves to promptly inform your system whenever a card replacement occurs. This helps ensure that important card management activities are communicated accurately and on time. Card replacements are crucial in banking because they affect customer accounts, security, and transaction abilities.

How it Works

Upon detection of a relevant card replacement action, regardless of the channel that was used for this action, the webhook initiates a notification process after checking the subscribers for this event.

To be able to receive this webhook notification, you must subscribe to it, and by default you are not.

Subscribers will be defined while create the financial institution in our system, or after creating.

/V2/webhook/CardReplacement

Card Replacement

Status:

Production

Version:

V2

Category:

Webhook
/V2/webhook/CardReplacement
curl --location --request POST '#{PARAM_URL}' --header 'Authorization: Bearer {{ access_token }}' {custom_headers} --data-raw '#{JSON_PAYLOAD}'
curl --location --request GET 'https://api-sandbox.network.global/v1/tokenkc/generate' \--data-raw '#{JSON_PAYLOAD}'
curl --location --request POST 'https://api-sandbox.network.global/v1/tokenkc/generate' \--data-raw '#{JSON_PAYLOAD}'

Node Child Node Type Length Description
Authorization* requiredBearer xxxx* requiredstringAuthorization Header (Bearer Token)
Content-Type* requiredapplication/json* requiredstringContent Type

Node TypeTypeLengthDescription
idstring20Unique identifer for the request
typestring32Type of the webhook
timestampstring30Timestamp of the request - Format YYYY-MM-DDtHH:MM:SS.SSS+04:00
detailscardidvalue* requiredstring32Card Identifier
type* requiredstring20externalCardId - when this is used,cardNumber - when clear card number is used
expiryDate* requiredstring4Card's expiry date
newExternalCardIdstring32New external CardId
newCard* requiredstring32New Block Code
oldCard* requiredstring32Previous Block Code

{
    "id": "b876d568-8411-4638-bdef-a1a188a4773b",
    "type": "CardReplacement",
    "timestamp": "2020-07-20T06:49:02.366Z",
    "details": {
        "card": {
            "id": {
                "value": "99984100133767425304",
                "type": "externalCardId"
            }
        },
        "expiryDate": "2809",
        "newExternalCardId": "_",
        "newCard": "_",
        "oldCard": "_"
    }
}

Node Child Node Type Length Description
Content-Typeapplication/jsonstringContent Type

Node TypeTypeLengthDescription
idstring36Unique identifer ID
typestring10Type of the webhook
timestampstring30Timestamp of the response - Format YYYY-MM-DDtHH:MM:SS.SSS+04:00
responsestatuscodestring5Status code of the response
descriptionstring30Response Description

{
    "id": "b876d568-8411-4638-bdef-a1a188a4773b",
    "type": "CardReplacement",
    "timestamp": "2020-07-20T06:49:02.366Z",
    "response": {
        "status": {
            "code": "00",
            "description": "successful"
        }
    }
}

Code Description
200Sample Description
400Bad Request
401Unauthorized
403Forbidden
500Internal Server Error
502Bad gateway
503Scheduled Maintenance
504Gateway Timeout
596Service Not Found

How It Works

Follow the steps below. For more details, read the Quick Start Guide.