{ "base": "\https://api.buddybuild.com/v1", "endpoint": "/apps", "method": "get", "params": { "headers": [ { "name": "Authorization", "type": "Bearer :api-access-token:", "req": true, "cue": "Enter your API access token" } ], "path": [], "query": [], "body": [] }, "authentication": "required" }
List apps
Definition
Placeholder for the definition; auto-generated from JSON above.
Use this method to retrieve a list of apps accessible to the authorized user.
Note
|
Looking for your API access token? Read more about authenticating with buddybuild or show your personal access token. |
Parameters
Required = *
Placeholder for the endpoint parameters; auto-generated from JSON above.
curl
curl -X GET \
-H 'Authorization: Bearer :api-access-token:' \
'https://api.buddybuild.com/v1/apps'
jquery
var settings = {
"async": true,
"crossDomain": true,
"url": "https://api.buddybuild.com/v1/apps/",
"method": "GET",
"headers": {
"authorization": "Bearer :api-access-token:"
}
}
$.ajax(settings).done(function (response) {
console.log(response);
});
Response
[
{
"_id": "58a4e07838704cb2eacd7ce4",
"app_name": "2048 iOS App",
"platform": "ios"
},
{
"_id": "58a4e07838704cb2eacd7ce6",
"app_name": "2048 Android App",
"platform": "android"
}
]