GET multistream targets
Use /multistream/target to a return a list of your existing multistream
targets.
Request
curl 'https://livepeer.studio/api/multistream/target' \
-H 'authorization: Bearer {api-key}'
Respons
200 OK
[
  {
    "id": "aaaaaaaa-aaaa-aaaa-aaaa-aaaa",
    "userId": "bbbbbbbb-bbbb-bbbb-bbbb-bbbb",
    "name": "My First Multistream Target"
  },
  {
    "id": "cccccccc-cccc-cccc-cccc-cccc",
    "userId": "bbbbbbbb-bbbb-bbbb-bbbb-bbbb",
    "name": "My Second Multistream Target"
  }
]
Note: Pagination should be done using the cursor in the
Linkresponse header. You can either use the raw link included in the header or extract thecursorand pass it in thecursorquery-string in the request.