List All Recordings

GET https://api.plivo.com/v1/Account/{{auth_id}}/Recording/?limit=5&offset=0

This method lists the recordings that are available in your account.

Below is the list of arguments that can be passed in this API request, more information can be found here

ArgumentsDescriptionRequired/Conditional/Optional
subaccountYou can provide the auth_id of the subaccount in case you want to filter only recordings of a given subaccount.Optional
call_uuidThe call_uuid of the call to filter only recordings associated with a specific call.Optional
add_timeFilter recordings based on the time they were added.
addtimegt: gt stands for greater than. The format expected is YYYY-MM-DD HH:MM[:ss[.uuuuuu]]. Eg:- To get all recordings that started after 2012-03-21 11:47, use addtimegt=2012-03-21 11:47
add_time
gte: gte stands for greater than or equal. The format expected is YYYY-MM-DD HH:MM[:ss[.uuuuuu]]. Eg:- To get all recordings that started after or exactly at 2012-03-21 11:47[:30], use addtimegte=2012-03-21 11:47[:30]
add
timelt: lt stands for lesser than. The format expected is YYYY-MM-DD HH:MM[:ss[.uuuuuu]]. Eg:- To get all recordings that started before 2012-03-21 11:47, use add_timelt=2012-03-21 11:47
addtimelte: lte stands for lesser than or equal. The format expected is YYYY-MM-DD HH:MM[:ss[.uuuuuu]]. Eg:- To get all recordings that started before or exactly at 2012-03-21 11:47[:30], use addtime__lte=2012-03-21 11:47[:30]
Optional
limitUsed to display the number of results per page. The maximum number of results that can be fetched is 20.Optional
offsetDenotes the number of value items by which the results should be offset. Eg:- If the result contains a 1000 values and limit is set to 10 and offset is set to 705, then values 706 through 715 are displayed in the results. This parameter is also used for pagination of the results.Optional

Request Params

KeyDatatypeRequiredDescription
subaccountstringYou can provide the auth_id of the subaccount in case you want to filter only recordings of a given subaccount.
call_uuidstringThe call_uuid of the call to filter only recordings associated with a specific call.
add_timestringFilter recordings based on the time they were added.
limitnumberUsed to display the number of results per page. The maximum number of results that can be fetched is 20.
offsetnumberDenotes the number of value items by which the results should be offset. Eg:- If the result contains a 1000 values and limit is set to 10 and offset is set to 705, then values 706 through 715 are displayed in the results. This parameter is also used for pagination of the results.