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": "et",
"sourceType": "anim consequat id",
"path": "dolore incididunt aute nulla",
"verb": "POST",
"origin": "voluptate ipsum"
},
{
"name": "eu dolore sit",
"sourceType": "irure sunt eu",
"path": "Excepteur fugiat",
"verb": "POST",
"origin": "deserunt amet"
},
{
"name": "fugiat aliquip sunt amet",
"sourceType": "ipsum",
"path": "ex sed Excepteur",
"verb": "GET",
"origin": "ut"
},
{
"name": "in reprehenderit adipisicing",
"sourceType": "anim",
"path": "in nostrud",
"verb": "POST",
"origin": "in pariatur sit"
},
{
"name": "culpa",
"sourceType": "in qui dolor reprehenderit",
"path": "laborum",
"verb": "POST",
"origin": "quis amet enim nulla qui"
}
]
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"
}
}
}
}