# Playlist

## Endpoints

* ### Lista de players por playlist

**URL:** \<seuprojeto>.edgecontents.com/ds/api/playlist

**Método:** GET

**Autenticação:** Basic Auth

**Parâmetros de Consulta:**

| Parâmetro | Tipo | Obrigatório | Descrição      |
| --------- | ---- | ----------- | -------------- |
| id        | int  | Sim         | ID da playlist |

**Exemplo de retorno:**

```json
{
    "26": {
        "name": "TV Entrada",
        "sys": "tv_entrada",
        "screenformat": 12,
        "playlistitems": [
            {
                "id": 263,
                "name": "Comercial - 1",
                "sys": "comercial_tv_entrada_1",
                "commercial": true
            },
            {
                "id": 264,
                "name": "Comercial - 2",
                "sys": "comercial_tv_entrada_2",
                "commercial": true
            },
            {
                "id": 265,
                "name": "Comercial - 3",
                "sys": "comercial_tv_entrada_3",
                "commercial": true
            },
            {
                "id": 266,
                "name": "Comercial - 4",
                "sys": "comercial_tv_entrada_4",
                "commercial": true
            }
        ],
        "screens": [
            {
                "id": 6,
                "name": "Paulista Corporate - TV Entrada"
            },
            {
                "id": 14,
                "name": "Paulista Corporate - PC UBUNTU 24.04"
            }
        ]
    }
}
```

* ### Lista de playlists por player

**URL:** \<seuprojeto>.edgecontents.com/ds/api/playlist

**Método:** GET

**Autenticação:** Basic Auth

**Parâmetros de Consulta:**

| Parâmetro | Tipo | Obrigatório | Descrição    |
| --------- | ---- | ----------- | ------------ |
| screen    | int  | Sim         | ID do player |

**Exemplo de retorno:**

```json
{
    "6": {
        "playlists": [
            {
                "id": "26",
                "name": "TV Entrada",
                "sys": "tv_entrada",
                "screenformat": "12",
                "playlistitems": [
                    {
                        "id": "263",
                        "name": "Comercial - 1",
                        "sys": "comercial_tv_entrada_1",
                        "commercial": true
                    },
                    {
                        "id": "264",
                        "name": "Comercial - 2",
                        "sys": "comercial_tv_entrada_2",
                        "commercial": true
                    },
                    {
                        "id": "265",
                        "name": "Comercial - 3",
                        "sys": "comercial_tv_entrada_3",
                        "commercial": true
                    },
                    {
                        "id": "266",
                        "name": "Comercial - 4",
                        "sys": "comercial_tv_entrada_4",
                        "commercial": true
                    }   
                ]
            },
            {
                "id": "112",
                "name": "Black - TV Entrada",
                "sys": "black_tv_entrada",
                "screenformat": "12",
                "playlistitems": [
                    {
                        "id": "275",
                        "name": "Black - TV Entrada",
                        "sys": "black_tv_entrada",
                        "commercial": false
                    }
                ]
            }
        ]
    }
}
```
