To list all recordings made, you can make a REST API call to /rest/recording with the method as GET.
Optional Parameters:
limit: Number
- This is the number of items to process per listing.
- Should be an integer
Example: /rest/recording?limit=100
Please note that:
- User must be logged in
- Multiple results may be retrieved
Example Output
{ "status": 1, "content": { "data": [ { "meetingId": "abcd-1234-5678-efgh-ijklmnop_api_fghi-1234-5678-jklm-nopqrst_12345678", "apiKey": "abcd-1234-5678-efgh-ijklmnop", "roomId": "fghi-1234-5678-jklm-nopqrst", "unixTime": 12345678, "participants": 20, "startTime": "2012-04-30T00:00:00.000Z", "endTime": "2012-04-30T00:01:23.456Z", "retrievalUrl": "http://site.com/recording/xxxx", "format": [ ".mp3", ".gsm" ], "resolution": [ "1080p" ], "size": "500x400", "username": "Test_temasys", "createdDate": "2015-10-15T01:57:39.235Z" }, { "meetingId": "abcd-1234-5678-efgh-ijklmnop_api_dhwj-e82j-00e2-jd8w-e83iwu2_435672", "apiKey": "abcd-1234-5678-efgh-ijklmnop", "roomId": "dhwj-e82j-00e2-jd8w-e83iwu2", "unixTime": 435672, "participants": 5, "startTime": "2012-08-20T00:00:00.000Z", "endTime": "2012-08-20T01:30:00.050Z", "retrievalUrl": "http://site.com/recording/xxxx", "format": [ ".ogg" ], "resolution": [ "720p" ], "size": "3x2", "username": "Test_temasys", "createdDate": "2015-10-15T01:58:01.377Z" }, { "meetingId": "rwgs-23gs-54h5-675u-fjdhenrt_api_sjdh-awwe-345s-dew5-rjenw3i4_7283947", "apiKey": "rwgs-23gs-54h5-675u-fjdhenrt", "roomId": "sjdh-awwe-345s-dew5-rjenw3i4", "unixTime": 7283947, "participants": 2, "startTime": "2012-10-20T00:00:00.000Z", "endTime": "2012-10-20T01:30:00.050Z", "retrievalUrl": "http://site.com/recording/xxxx", "format": [ ".ogg" ], "resolution": [ "4K" ], "size": "10x8", "username": "Test_temasys", "createdDate": "2015-9-10T01:58:01.377Z" } ], "pagination": { "count": 3, "nextUrl": "/rest/recording?limit=3&esk=rwgs-23gs-54h5-675u-fjdhenrt_api_sjdh-awwe-345s-dew5-rjenw3i4_7283947" } } }
You may also wish to see our Technical Guides on: Accessing Skylink's Recording and Archiving Functionality and Recording Notification API call