Summary
Get all available rest calls in IAP.
Description
Get all available rest calls in IAP.
Route
GET /automation-studio/json-forms/method-options
Roles
admin
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
This method has no parameters |
Copied to Clipboard
{
"type": "object",
"properties": {},
"required": [],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
calls |
array |
List of all rest calls available in the system. |
Copied to Clipboard
[
{
"name": "exercitation",
"sourceType": "qui sed",
"path": "aliqua",
"verb": "GET",
"origin": "deserunt proident quis"
},
{
"name": "ut Excepteur cillum aliqua",
"sourceType": "et proident amet deserunt",
"path": "nulla enim",
"verb": "GET",
"origin": "sunt labore ut"
},
{
"name": "voluptate cillum",
"sourceType": "dolore fugiat sit elit laborum",
"path": "nulla magna laboris eu irure",
"verb": "GET",
"origin": "sunt"
},
{
"name": "in aute irure nisi",
"sourceType": "dolor dolore",
"path": "cupidatat ea dolore laborum",
"verb": "GET",
"origin": "aliqua laboris sunt amet pariatur"
},
{
"name": "sed",
"sourceType": "consectetur ut",
"path": "nulla",
"verb": "GET",
"origin": "tempor sint exercitation aute Lorem"
}
]
Copied to Clipboard
{
"title": "calls",
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"sourceType": {
"type": "string"
},
"path": {
"type": "string"
},
"verb": {
"type": "string",
"enum": [
"GET",
"POST"
]
},
"origin": {
"type": "string"
}
}
}
}