Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Anchor
_Toc341972345
_Toc341972345
/auth/listApplications

Code Block
languagejs
{
	"return":["id","name"]
}


Code Block
languagejs
{
	"error":0,
	"result":
	{
		total:2,
		rows:
	[
		{
			"id":"aid1",
			"name":"application 1"
		},
		{
			"id":"aid2",
			"name":"application 2"
		}
	]
	}
}


Wiki Markup
+Examples:+
Method:/auth/listApplications
Parameters: 
\{
"return":\["id","name"\]
\}
Response: 
\{
 "error":0,
"result":
\{
total:1,
rows:
\[
 \{
 "id":"aid1",
 "name":"aaa application"
\}
\]
\}
\\
\}
\\
\\

...