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": "ex occaecat nulla veniam exercitation",
"sourceType": "ea veniam in commodo",
"path": "ut laborum ex aliquip pariatur",
"verb": "GET",
"origin": "exercitation adipisicing irure in officia"
},
{
"name": "exercitation Ut ea in",
"sourceType": "in ut et",
"path": "dolore minim",
"verb": "GET",
"origin": "nostrud"
},
{
"name": "nostrud id",
"sourceType": "aute Ut ad",
"path": "nulla consequat labore",
"verb": "GET",
"origin": "quis occaecat mollit"
},
{
"name": "deserunt non Lorem",
"sourceType": "proident exercitation commodo",
"path": "irure et",
"verb": "GET",
"origin": "adipisicing elit"
}
]
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"
}
}
}
}