Operating System
Returns a list of operating systems and their corresponding id's. If no specific search query is specified, returns all operating system.
Field | Param | Required/ Optional | Description |
---|---|---|---|
q | string | optional | Search query parameter. Returns result for a specific Operating system. If no value is specified, then all operating system's data will be returned |
per_page | int | optional | Number of rows per page. Default Value- 30 |
page | int | optional | Returns page number. Default Value- 1 page |
curl -X GET \
'https://api.kayzen.io/v1/meta/os?page=1&per_page=25&q=ios' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer ACCESS_TOKEN'
{
"data":[
{
"id":12,
"name":"iOS"
}
],
"meta":{
"current_page":1,
"total_pages":1,
"total_entries":1
}
}
Updated almost 4 years ago