Project

General

Profile

API - Webhooks

You can provide an URL to receive notifications for various actions. We will send a POST request for every action regarding customers who have generated a login token.

Customer account

Available actions: account_locked, email_change, password_change, account_deleted

Post Fields: api_id=111&data[section]=account&data[customer_id]=1234&data[action]=password_change

Array
(
    [api_id] => 1
    [data] => Array
        (
            [section] => account
            [customer_id] => 1234
            [action] => password_change
        )

)

Order status

Post Fields: api_id=1&data[section]=order&data[customer_id]=2&data[order_id]=655247&data[status]=cancelled

(
    [api_id] => 1
    [data] => Array
        (
            [section] => order
            [customer_id] => 1234
            [order_id] => 567890
            [status] => cancelled
        )

)

Go to top