Signature

Generate HMAC hash signature to check that webhook is actually comming from BetEngine.

The Signature is calculated based on the timestamp, request body and your Secret Key with HMAC hash using SHA256 Algorithm.

Here is an example on how to generate the Signature for ticket_create action with Secret Key=12345ABCDE, timestamp=1706191612 and following request body:

{
    "action": "ticket_create", 
    "data": {
        "operator": "operator-code",
        "ticket_id": "1330556611374148608",
        "ticket_code": "A61C53",
        "player_id": "1660986605374148608",
        "stake": 500,
        "tax": 100,
        "payout": 1500,
        "currency": "KES",
        "atag": "affiliate-1",
        "ticket_type": "quicktip"
    }
}

In order to generate the Signature all spaces must be removed from the request body:

{"action":"ticket_create","data":{"operator":"operator-code","ticket_id":"1330556611374148608","ticket_code":"A61C53","player_id":"1660986605374148608","stake":500,"tax":100,"payout":1500,"currency":"KES","atag":"affiliate-1","ticket_type":"quicktip"}}

Please note that the order of the fields matters for calculating the signature. It will always be action first then data. Fields in data must be in the same order they are listed on doc pages for actions.

Please note that optional fields, like atag will also be included in signature generation, even if they have null values. For example, if atag field has null value then it will be included in signature generation like so:

{...,"atag":null,...}

Then message for HMAC algorithm has to be formed using following template:

{timestamp}{request body with removed spaces}

So the message should look like the following:

1706191612{"action":"ticket_create","data":{"operator":"operator-code","ticket_id":"1330556611374148608","ticket_code":"A61C53","player_id":"1660986605374148608","stake":500,"tax":100,"payout":1500,"currency":"KES","atag":"affiliate-1","ticket_type":"quicktip"}}

The computed Signature for this request is:

55eec80c99a69b36267344c0f42f0d5d7703389f78ecf9451f602aa9fb6ecb32

A free online HMAC Generator for testing is available on https://www.freeformatter.com/hmac-generator.html#before-output.

Here is how we calculated the Signature from above example using Free Formatter

Your Secret Key is located on your API Settings page. Login to Betstack to access your Secret Key

Last updated