Site Objects

📘

GET https://api.kayzen.io/v1/meta/site_objects

Returns a list of site object names and site object id's. If no specific search query is specified, returns all site objects.

FieldParamRequired/ OptionalDescription
qstringoptionalSearch query parameter. Returns result for a specific site object. If no value is specified, then all site objects data will be returned
per_pageintoptionalNumber of rows per page. Default Value: 30 entries
pageintoptionalReturns page number.Default Value: 1 page
curl -X GET \
'https://api.kayzen.io/v1/meta/site_objects?page=1&per_page=25&q=kayzen' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer ACCESS_TOKEN'
{  
   "data":[  
      {  
         "id":14,
         "type":"SiteObject",
         "name":"https://kayzen.io/",
         "ad_domain":"kayzen.io"
      }
   ],
   "meta":{  
      "current_page":1,
      "total_pages":1,
      "total_entries":1
   }
}