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": "eu aliquip voluptate minim ut",
"sourceType": "in",
"path": "eiusmod ea",
"verb": "GET",
"origin": "qui do in"
},
{
"name": "Duis est",
"sourceType": "aute Ut sed adipisicing officia",
"path": "mollit minim veniam sed",
"verb": "GET",
"origin": "tempor et"
},
{
"name": "eu sit sed sunt minim",
"sourceType": "amet officia voluptate pariatur",
"path": "fugiat",
"verb": "GET",
"origin": "sint voluptate"
},
{
"name": "voluptate pariatur sed labore amet",
"sourceType": "in incididunt",
"path": "nulla",
"verb": "GET",
"origin": "laboris enim dolor ex"
}
]
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"
}
}
}
}