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": "adipisicing id",
"sourceType": "quis",
"path": "adipisicing",
"verb": "GET",
"origin": "cupidatat enim veniam Ut id"
},
{
"name": "consectetur Excepteur minim",
"sourceType": "irure qui dolore consequat dolor",
"path": "ut",
"verb": "POST",
"origin": "velit dolore aliquip amet non"
},
{
"name": "ut consectetur pariatur velit",
"sourceType": "Duis dolore tempor",
"path": "ex sunt",
"verb": "POST",
"origin": "qui"
},
{
"name": "aute aliquip",
"sourceType": "do veniam irure",
"path": "sunt dolore consectetur ut",
"verb": "GET",
"origin": "labore ex minim irure sed"
}
]
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"
}
}
}
}