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": "do et eiusmod ullamco",
"sourceType": "exercitation in dolore",
"path": "magna consequat in ad officia",
"verb": "POST",
"origin": "laboris pariatur elit fugiat"
},
{
"name": "consequat enim",
"sourceType": "ut fugiat in",
"path": "eiusmod et",
"verb": "GET",
"origin": "in ut do est"
},
{
"name": "occaecat cupidatat deserunt et",
"sourceType": "in culpa minim adipisicing",
"path": "fugiat eu deserunt",
"verb": "GET",
"origin": "ipsum fugiat officia elit"
},
{
"name": "eiusmod ut enim cillum",
"sourceType": "consectetur veniam id voluptate labore",
"path": "irure sit",
"verb": "POST",
"origin": "voluptate"
},
{
"name": "anim sed occaecat",
"sourceType": "pariatur aliqua et fugiat esse",
"path": "sunt ipsum officia fugiat quis",
"verb": "POST",
"origin": "dolore"
}
]
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"
}
}
}
}