Channels

List the channels in this project

GET https://api-v2.acrcloud.com/api/bm-bd-projects/:pid/channels

This endpoint allows you to get free cakes.

Path Parameters

NameTypeDescription

id

string

The project id

Query Parameters

NameTypeDescription

state

string

All,Running,Timeout,Paused,Invalid URL,Mute,Other. Default is All

timemap

string

0 or 1

search_type

string

channel_id, channel_name, city, custom_id, mytuner_id

search_value

string

page

number

The page number

Headers

NameTypeDescription

Authorization

string

Bearer token

Accept

string

application/json

{
    "data": [
        {
            "uid": 19,
            "project_id": 179,
            "id": 100251,
            "type": "Radio",
            "name": "BBC Radio 1",
            "sub_title": "London - 98.8 FM",
            "language": "English",
            "city": "London",
            "province": null,
            "country": "United Kingdom",
            "continent": "Europe",
            "website": "http://www.bbc.co.uk/radio1",
            "twitter": "http://twitter.com/BBCR1",
            "mytuner": "https://mytuner-radio.com/radio/409791",
            "urls": [],
            "status_code": 0,
            "monitor_at": "2018-02-26 07:56:50",
            "timemap": 0,
            "user_defined": [],
            "add_at": "2020-03-25 00:00:00"
        },
        {
            "uid": 19,
            "project_id": 179,
            "id": 100252,
            "type": "Radio",
            "name": "BBC Radio 2",
            "sub_title": "London - 89.1 FM",
            "language": "English",
            "city": "London",
            "province": null,
            "country": "United Kingdom",
            "continent": "Europe",
            "website": "http://www.bbc.co.uk/radio2",
            "twitter": "http://twitter.com/BBCRadio2",
            "mytuner": "https://mytuner-radio.com/radio/409758",
            "urls": [],
            "status_code": 0,
            "monitor_at": "2018-02-26 07:56:50",
            "timemap": 0,
            "user_defined": [],
            "add_at": "2020-03-25 00:00:00"
        }
    ],
    "links": {
        "first": "https://api-v2.acrcloud.com/api/bm-bd-projects/179/channels?page=1",
        "last": "https://api-v2.acrcloud.com/api/bm-bd-projects/179/channels?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "path": "https://api-v2.acrcloud.com/api/bm-bd-projects/179/channels",
        "per_page": 50,
        "to": 2,
        "total": 2
    }
}
curl --location --request GET 'https://api-v2.acrcloud.com/api/bm-bd-projects/179/channels' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {your token}'

Add channels to your project

POST https://api-v2.acrcloud.com/api/bm-bd-projects/:pid/channels

Path Parameters

NameTypeDescription

pid

number

The project id

Headers

NameTypeDescription

Authorization

string

Bearer token

Accept

string

application/json

Content-Type

string

application/json

Request Body

NameTypeDescription

channels

string

channel_id array

curl --location --request POST 'https://api-v2.acrcloud.com/api/bm-bd-projects/12345/channels' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {your token}' \
--header 'Content-Type: application/json' \
--data-raw '{"channels": [238766]}'

Delete channels from your project

DELETE https://api-v2.acrcloud.com/api/bm-bd-projects/:pid/channels/:channel_ids

Path Parameters

NameTypeDescription

pid

string

The project id

channel_ids

string

One or multiple channel ids,

Headers

NameTypeDescription

Authorization

string

Bearer token

Accept

string

application/json

curl --location --request DELETE 'https://api-v2.acrcloud.com/api/bm-bd-projects/12345/channels/238766?is_marked=0' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {your token}' \

Last updated