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": "in consequat",
"sourceType": "in consectetur",
"path": "do in irure Excepteur nisi",
"verb": "GET",
"origin": "nisi enim proident qui"
},
{
"name": "in eu",
"sourceType": "laboris quis",
"path": "est nostrud eu non",
"verb": "POST",
"origin": "amet aute"
},
{
"name": "dolor esse labore occaecat irure",
"sourceType": "commodo sunt id deserunt",
"path": "id in",
"verb": "POST",
"origin": "nulla incididunt ex"
},
{
"name": "magna nostrud incididunt in",
"sourceType": "culpa",
"path": "tempor",
"verb": "GET",
"origin": "quis tempor"
}
]
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"
}
}
}
}