-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6027637
commit 8f971be
Showing
2 changed files
with
54 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
`/v1/list_apis` | ||
|
||
Get all msgraph api names supported | ||
|
||
HTTP Method: GET | ||
|
||
Returns: Invoke result [^1] | ||
|
||
`/v1/running_users` | ||
|
||
Get all running users | ||
|
||
HTTP Method: GET | ||
|
||
Returns: Invoke result [^1] | ||
|
||
`/v1/waiting_users` | ||
|
||
Get all waiting users | ||
|
||
HTTP Method: GET | ||
|
||
Returns: Invoke result [^1] | ||
|
||
`/v1/user_results` | ||
|
||
Get api calling results of user given | ||
|
||
HTTP Method: GET | ||
|
||
Query params: | ||
|
||
`user`: The user name defined in configuration | ||
|
||
`api_name`: The api name | ||
|
||
Returns: Invoke result [^1] | ||
|
||
[^1] Invoke result is json data like this: | ||
```jsonc | ||
{ | ||
"method": "<method>", // The method you called | ||
"args": {...}, // The arguments to the method in json format | ||
"result": ..., // The result of method invoked | ||
"timestamp": <timestamp> // Generated from server, milisecond timestamp | ||
} | ||
``` |