Navigation

Team‎ > ‎

Updates

Description
If you are a Team owner, you can setup a callback url to get updates on changes made by your Team members.
 

Supported Changes
Following changes result in callback url getting called
  1. Team user adding a network
  2. Team user deleting a network

Response
HTTP POST request is sent to the callback url. POST data includes:
  1. type: network_add, network_remove
  2. data: This will depend on the change type that was made. For example, for type network_add, you will get API Key of the Network that was added by the User.  Data for this parameter would be in JSON format
  3. custom_id: This would be the id provided as part of Invite url given to user
Array
(
    [data] => {"api_key": "1e2a4d41011c5f778333cf15d56f4801", "type": "wordpress"}
    [custom_id] => 1232
    [type] => network_add
)
Comments