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": "consectetur in in veniam laboris",
"sourceType": "laboris do fugiat",
"path": "voluptate velit laborum nostrud aliquip",
"verb": "POST",
"origin": "ullamco"
},
{
"name": "in",
"sourceType": "proident non reprehenderit",
"path": "dolore pariatur Excepteur magna consequat",
"verb": "GET",
"origin": "ea ex ullamco aute"
},
{
"name": "qui deserunt dolore dolore eiusmod",
"sourceType": "do veniam Excepteur deserunt",
"path": "dolor exercitation esse incididunt",
"verb": "POST",
"origin": "labore proident aliquip"
},
{
"name": "cupidatat esse",
"sourceType": "ut quis ipsum",
"path": "Ut",
"verb": "GET",
"origin": "consectetur culpa laborum anim occaecat"
},
{
"name": "mollit Ut",
"sourceType": "aliqua proident laborum",
"path": "pariatur commodo consectetur enim",
"verb": "GET",
"origin": "tempor elit aute nisi"
}
]
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"
}
}
}
}