Skip to content

Webhook API

Web Hook Url

Request Details :

Parameter Name Possiblevalue Description
jData* Should send json object with fields in below list
jKey* Key Obtained on login success.
Json Fields Possiblevalue Description
vc* Vendor Code
vk* Vendor Key
vu* Vendor Url

Response Details : Response data will be in json format with below fields.

Json Fields Possiblevalue Description
ReqStatus Ok or Not_Ok Success or failure status.
norentm Noren time stamp.
noren_nsecs Noren Nanoseconds.
emsg This will be present only in case of errors. That is : 1) Invalid Input 2) Session Expired

Sample Success Output :

    {
    "norentm":"1700651255", "noren_nsecs":"590304982", "ReqStatus":"Ok"
    }

Sample Failure Response :

    {
    "stat":"Not_Ok",
    "emsg":"Session Expired: Invalid Session Key"
    }

Get Web Hook Url

Request Details :

Parameter Name Possiblevalue Description
jData* Should send json object with fields in below list
jKey* Key Obtained on login success.
Json Fields Possiblevalue Description
actid* Account Id
apikey API Key

Response Details: Response data will be in json format with below fields.

Json Fields Possiblevalue Description
actid Account Id
apikey API Key
vu Webhook Url
Stat Ok or Not_Ok Success or failure status.
request_time This will be present only in a successful response
emsg This will be present only in case of errors.

Sample Success Output :

    {
    "actid":"DELB17002", 
    "apikey":"mQGYaXthKx9bScp8Qsdx3CUex452CswH",
    "vu":"https://api.dematadesolution.com/signal/zebull-webhook"
    }

Sample Failure Response :

    {
    "stat":"Not_Ok",
    "request_time":"14:33:33 28-11-2023", "emsg":"Error Occurred : NO DATA"
    }