Dropbox SignDropbox Sign eSignature API
GET/api_app/list
List API Apps
Returns a list of API Apps that are accessible by you. If you are on a team with an Admin or Developer role, this list will include apps owned by teammates.
Manage accounts, signature requests, templates, teams, bulk sends, file downloads, fax, and event callbacks through the complete Dropbox Sign v3 API; the Hub provides documentation and a local SDK/CLI only.
Request
- operationId
apiAppList- Server
https://api.hellosign.com/v3- Authentication
- api_key, oauth2
Request parameters
page
queryinteger
Which page number of the API App List to return. Defaults to `1`.
1
page_size
queryinteger
Number of objects to be returned per page. Must be between `1` and `100`. Default is `20`.
20
Responses
200
ApiAppListResponseapplication/json
successful operation
Properties: api_appslist_infowarnings
4XX
ErrorResponseapplication/json
failed_operation
Properties: error
{
"api_apps": [
{
"callback_url": "https://example.com/resource",
"client_id": "example-client-id",
"created_at": 0,
"domains": [
{}
],
"name": "Example Name",
"is_approved": false,
"oauth": {
"callback_url": "https://example.com/resource",
"scopes": [
{}
],
"charges_users": false
},
"options": {
"can_insert_everywhere": false
}
}
],
"list_info": {
"num_pages": 0,
"num_results": 0,
"page": 0,
"page_size": 0
},
"warnings": [
{
"warning_name": "Example Name"
}
]
}