List of Radios using pagination
GET
/api/v1/Radio/pagedList
This endpoint returns a list of Radios using pagination including page, pagesize, total records and data, example api/v1/radio/pagedList?page=1&pagesize=10
Parameters
Query Parameters
SortBy
Typestring
SortDirection
Typestring
Page*
Typeinteger
RequiredFormat
"int32"PageSize*
Typeinteger
RequiredFormat
"int32"Responses
Success
application/json
JSON
{
"page": 0,
"pageSize": 0,
"totalRecords": 0,
"pageCount": 0,
"data": [
{
"id": 0,
"name": "string",
"frequency": 0,
"band": "string",
"cityId": 0,
"city": "[Circular Reference]",
"url": "string",
"streamers": [
"string"
]
}
]
}