Data Push

Sample request for Data Push

Request URL : https://staging.getcompass.ai/webhook/external

{ 
"clientId" : "abc", 
"clientSecret" : "xyz", 
"objectName" : "transactions", 
"data" : [
 {
 "id" : 1, 
 "action" : "created", 
 "transaction_date" : "13-10-2019", 
 "amount" : "0" 
 }, 
 { 
 "id" : 5, 
 "action" : "updated", 
 "transaction_date" : "13-10-2019", 
 "amount" : "10" 
 }
  ]
 }

The data schema is flexible but it needs to be in flat format without any nesting (as shown in the above example)

Last updated