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": "proident",
"sourceType": "consectetur nulla est",
"path": "aute",
"verb": "GET",
"origin": "magna consectetur Ut"
},
{
"name": "est in consequat",
"sourceType": "sed ullamco",
"path": "in ullamco aute non",
"verb": "GET",
"origin": "qui ullamco Excepteur"
},
{
"name": "minim Duis velit nulla",
"sourceType": "nostrud",
"path": "reprehenderit ad",
"verb": "GET",
"origin": "aliquip do consectetur fugiat in"
},
{
"name": "in esse ex",
"sourceType": "enim ut",
"path": "amet cupidatat anim dolor do",
"verb": "GET",
"origin": "consequat ea"
},
{
"name": "amet aliquip reprehenderit nulla",
"sourceType": "magna eiusmod et",
"path": "aute",
"verb": "GET",
"origin": "sint elit tempor reprehenderit"
}
]
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"
}
}
}
}