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
Arguments | Description | Required/Conditional/Optional |
---|---|---|
subaccount | You can provide the auth_id of the subaccount in case you want to filter only recordings of a given subaccount. | Optional |
call_uuid | The call_uuid of the call to filter only recordings associated with a specific call. | Optional |
add_time | Filter 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_timegte: 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] addtimelt: 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 |
limit | Used to display the number of results per page. The maximum number of results that can be fetched is 20. | Optional |
offset | Denotes 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
Key | Datatype | Required | Description |
---|---|---|---|
subaccount | string | You can provide the auth_id of the subaccount in case you want to filter only recordings of a given subaccount. | |
call_uuid | string | The call_uuid of the call to filter only recordings associated with a specific call. | |
add_time | string | Filter recordings based on the time they were added. | |
limit | number | Used to display the number of results per page. The maximum number of results that can be fetched is 20. | |
offset | number | Denotes 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. |