LogoLogo
NymCardAPI catalogContact usnFront catalog
  • NYMCARD DOCUMENTATION
  • Get Started
    • nCore API Quick Tutorial
    • API Core Principles
    • Program management
      • Manage documents by APIs
      • User KYB process
      • Necessary parameters per user type
      • User ID verification by SDK
      • User KYC process
    • Issuance
      • Users
      • Cards
    • Issuing Physical Cards
      • Individual card issuance
      • Bulk card issuance
      • Card fulfillment
      • Card PIN management
      • Card replacement
      • Proxy number usage
    • Issuing Virtual Cards
      • Migration of virtual to physical card
    • Funding and transfers
      • Funding
      • Internal funding source
      • External funding source
        • From card
        • From bank account
        • Lean API flow
        • DAPI direct API flow
      • Transfers
      • Western Union APIs
      • Checkout widget
    • Product Management
      • Card product
      • Balance limits
      • Velocity limits
      • Fees
      • Charges
      • Multi-currency
      • Authorization controls
        • Enhancements for MCC list management
    • Transactions
      • Payment ecosystem
      • Transaction lifecycle
      • Transaction types
      • Transaction endpoints scenarios
      • Multi-clearing process
    • Webhooks
      • Introduction to webhooks
      • nCore webhook events
      • Steps to configure a webhook
      • Webhooks samples
      • Webhook changes for simulation
      • Webhooks management
    • Security
      • PCI widget
      • 3D Secure
      • OTP SMS templates
    • Release announcements
      • Embedded Lending Release Notes
      • Changes in the release on 13/07/2023
      • Changes in the release on 23/05/2023
      • Changes in the release on 04/04/2023
  • For developers
    • nCore API catalog
    • nFront API catalog
Powered by GitBook
On this page

Was this helpful?

  1. Get Started
  2. Webhooks

Webhook changes for simulation

We have added the ability to simulate (pre-defined successful) user’s status and to proceed for completing the user verification process ( for KYC and IDV) on the test environments (DEV, Staging, Sandbox, UAT). Below you can find respective webhook changes - the new fields in USER_STATUS_CHANGE & KYC_RESULT webhooks.

Changes in USER_STATUS_CHANGE webhook - new "note" field:

// { 
"event": "USER_STATUS_CHANGE", 
"user_id": "muhaysaaduser18JAN23", 
"old_status": "PENDINGKYC", 
"old_status_reason_code": "I0", 
"new_status": "ACTIVE", 
"new_status_reason_code": "A0", 
"user_type": "INDIVIDUAL", 
"note": "service.kyc.simulation", 
"created": "2023-01-18T11:55:23.976Z" 
} 

Changes in KYC_RESULT webhook - new "status_description" field:

// { 
"event": "KYC_RESULT", 
"kyc_policy": "UAE_INDIVIDUAL_PRIMARY", 
"kyc_id": "performkyca18JAN2301", 
"user_id": "muhaysaaduser18JAN23", 
"note": "Some note", 
"old_status": "SUBMITTED", 
"status": "PASS", 
"status_code": "P0", 
"status_description": "service.kyc.simulation", 
"created": "2023-01-18T11:55:23.840Z", 
"modified": "2023-01-18T11:55:23.946Z" 
}
PreviousWebhooks samplesNextWebhooks management

Last updated 2 years ago

Was this helpful?