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": "Duis reprehenderit sit anim nostrud",
"sourceType": "nisi Lorem non incididunt qui",
"path": "quis et anim esse",
"verb": "POST",
"origin": "ea sed consequat Ut id"
},
{
"name": "minim tempor exercitation Lorem",
"sourceType": "deserunt sed amet",
"path": "consequat culpa laborum",
"verb": "GET",
"origin": "ut voluptate nulla est"
},
{
"name": "dolor",
"sourceType": "sunt elit ad non incididunt",
"path": "officia ut magna mollit ea",
"verb": "POST",
"origin": "aliqua"
},
{
"name": "eu irure non",
"sourceType": "laboris",
"path": "proident adipisicing ut",
"verb": "GET",
"origin": "adipisicing in enim"
}
]
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"
}
}
}
}