Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

If you sell a product in our store you can define webhooks, which get executed when a product of yours get installed or uninstalled. To define these webhooks log into our store. Manage one of your products and click on Webhooks.

Image Added

When a product has been installed or uninstalled by a client we send POST data, which include the following example 

Code Block
Array 
( 
    [client_id] => 895a20081f9b4bd525a45dae693f07fa 
    [endpoint] => http://www.localhost.com/ 
    [client] => Array 
        ( 
            [email] => client@email.com
            [first_name] => Raymond 
            [last_name] => Benc 
        ) 

    [product] => Array 
        ( 
            [id] => 1226 
            [paid] => 18 
        ) 

    [auth] => Array 
        ( 
            [id] => 454ddc73ae7e1fef2efc7fa7056d75f5 
            [key] => 89f91f85ace75d1e5a314433e8e09b68 
        ) 

)