GET : API to Get all recordings for a Participant Session
GET
https://<appname>.metered.live/api/v1/recordings/participantsession/:participantSessionId:
<appname>
- replace it the name of your app.
<participantSessionId:>
- replace it with the name of the participant session for which you want the recordings
Description
This endpoint allows you to GET all the recordings for a participant session
Parameters
Parameters | Description | Required | Options | |
---|---|---|---|---|
Query | ||||
secretKey | string | your secret key | yes | - |
participantSessionId | string | participantSessionId | yes | - |
Request Samples
- cURL
- NodeJs
- Ruby
- Python
- Go
cURL
curl --request GET \
--url 'https://appname.metered.live/api/v1/recordings/participantsession/:participantSessionId?secretKey={replace_this_with_your_secretKey}' \
--header 'Accept: application/json'
NodeJs (Axios)
//We are using axios to send requests in our example
const axios = require('axios');
async function a (){
try{
const response = await axios.get('https://appname.metered.live/api/v1/recordings/participantsession/:participantSessionId',
{
params: {
secretKey: 'your_secret_key'
}
})
console.log(response.data)
} catch(error){
console.log(error)
}
}
Ruby
require 'uri'
require 'net/http'
require 'openssl'
url = URI("https://appname.metered.live/api/v1/recordings/participantsession/:participantSessionId")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Accept"] = 'application/json'
response = http.request(request)
puts response.read_body
Python
import requests
url = "https://appname.metered.live/api/v1/recordings/participantsession/:participantSessionId"
headers = {"Accept": "application/json"}
response = requests.request("GET", url, headers=headers)
print(response.text)
Go
package main
import (
"fmt"
"io/ioutil"
"log"
"net/http"
)
func main() {
client := &http.Client{}
req, err := http.NewRequest("GET", "https://appname.metered.live/api/v1/recordings/participantsession/:participantSessionId?secretKey={replace_this_with_your_secretKey}", nil)
if err != nil {
log.Fatal(err)
}
req.Header.Set("Accept", "application/json")
resp, err := client.Do(req)
if err != nil {
log.Fatal(err)
}
defer resp.Body.Close()
bodyText, err := ioutil.ReadAll(resp.Body)
if err != nil {
log.Fatal(err)
}
fmt.Printf("%s\n", bodyText)
}
Responses
200
{
"currEndId": null,
"total": 0,
"limit": 50,
"data": []
}
400
{
"success": false,
"message": "Invalid request"
}