This API is used to get details of all the application that have been created under your Plivo account.

API Endpoint

GET
https://api.plivo.com/v1/Account/{auth_id}/Application/

Arguments

NameTypeDescription
subaccountstringID of the subaccount, in case only subaccount applications are needed.
limitintegerUsed to display the number of results per page. The maximum number of results that can be fetched is 20.
offsetintegerDenotes the number of value items by which the results should be offset.
app_namestringReturns applications that start with the provided value.

Returns

Returns a list of Application objects.

Request

import plivo

client = plivo.RestClient('<auth_id>','<auth_token>')
response = client.applications.list(
    offset=0,
    limit=5, )
print(response)