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.
Field | Param | Required/ Optional | Description |
---|---|---|---|
q | string | optional | Search query parameter. Returns result for a specific site object. If no value is specified, then all site objects data will be returned |
per_page | int | optional | Number of rows per page. Default Value: 30 entries |
page | int | optional | Returns 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
}
}
Updated about 1 month ago