DeveloperConsole - danopia/deviantart-difi GitHub Wiki
This calls are used to execute examples on the Developer Console page at http://www.deviantart.com/developers/console/
do_api_request
This method can be used by logged-in users to test out different official API calls in the Console page.
Usage
- To test the API calls using the developer console.
Params
endpoint
: string (e.g./user/whois
)parameters
: array containing objects
The parameters
is an array that contains objects for each API parameter, e.g.:
[
{ "name": "usernames[]",
"value": "dadroid-bot" },
{ "name": "usernames[]",
"value": "drsdavidsoft" },
{ "name": "expand",
"value": "user.details,user.profile" },
]
Response
The response is variable for each API call.
get_stash_folders
undocumented
Params
None