Add tracks, profit.
GET
/livestream/api/v1/livestream
{"X-Api-Key": <invoice_key>}
[<livestream_object>, ...]
curl -X GET {{ request.url_root }}api/v1/livestream -H "X-Api-Key: {{
user.wallets[0].inkey }}"
PUT
/livestream/api/v1/livestream/track/<track_id>
{"X-Api-Key": <invoice_key>}
curl -X PUT {{ request.url_root
}}api/v1/livestream/track/<track_id> -H "X-Api-Key: {{
user.wallets[0].inkey }}"
PUT
/livestream/api/v1/livestream/fee/<fee_pct>
{"X-Api-Key": <invoice_key>}
curl -X PUT {{ request.url_root
}}api/v1/livestream/fee/<fee_pct> -H "X-Api-Key: {{
user.wallets[0].inkey }}"
POST
/livestream/api/v1/livestream/tracks
{"X-Api-Key": <invoice_key>}
{"name": <string>, "download_url": <string>,
"price_msat": <integer>, "producer_id": <integer>,
"producer_name": <string>}
curl -X POST {{ request.url_root }}api/v1/livestream/tracks -d
'{"name": <string>, "download_url": <string>,
"price_msat": <integer>, "producer_id": <integer>,
"producer_name": <string>}' -H "Content-type: application/json"
-H "X-Api-Key: {{ user.wallets[0].adminkey }}"
DELETE
/livestream/api/v1/livestream/tracks/<track_id>
{"X-Api-Key": <invoice_key>}
curl -X DELETE {{ request.url_root
}}api/v1/livestream/tracks/<track_id> -H "X-Api-Key: {{
user.wallets[0].inkey }}"