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": "ea laborum quis sed",
"sourceType": "nulla commodo cupidatat laboris",
"path": "quis consectetur magna dolor pariatur",
"verb": "POST",
"origin": "cupidatat eu"
},
{
"name": "eu anim reprehenderit commodo magna",
"sourceType": "amet in",
"path": "qui irure dolore ea laborum",
"verb": "GET",
"origin": "culpa consequat velit"
},
{
"name": "quis ipsum mollit consectetur minim",
"sourceType": "mollit",
"path": "occaecat eiusmod",
"verb": "POST",
"origin": "Duis enim dolore aliqua dolore"
},
{
"name": "ea",
"sourceType": "cillum",
"path": "elit",
"verb": "GET",
"origin": "ut occaecat dolore consectetur 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"
}
}
}
}