Projects
Syncing data with your Projects
Datasource
Sync Datasource
POST /api/v2/projects/datasources/12345/sync/Data payload example
{
"payload": {
"Site Title": "New Site",
"URL": "www.example.com"
}
}Response
{
"objects": [
{
"obj_type": "Business",
"method": "update",
"data": {
...The full Business detail will be returned here
},
"resource_uri": "/api/v2/businesses/12345"
},
{
"obj_type": "Site",
"method": "create".,
"data": {
...The full Site detail will be returned here
},
"resource_uri": "/api/v2/sites/123456"
}
]
}Last updated