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": "reprehenderit cillum ex",
"sourceType": "fugiat mollit",
"path": "dolore et",
"verb": "POST",
"origin": "dolor culpa non consectetur"
},
{
"name": "elit dolor mollit ullamco eiusmod",
"sourceType": "aliqua id",
"path": "ad",
"verb": "POST",
"origin": "eiusmod"
},
{
"name": "veniam in Lorem est cupidatat",
"sourceType": "dolore nostrud qui amet irure",
"path": "incididunt amet et",
"verb": "GET",
"origin": "magna"
},
{
"name": "sint",
"sourceType": "magna aliqua",
"path": "reprehenderit laboris non ullamco laborum",
"verb": "GET",
"origin": "non eu ipsum"
},
{
"name": "est anim qui in",
"sourceType": "officia non id ut",
"path": "ad cillum",
"verb": "GET",
"origin": "pariatur ut Duis"
}
]
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"
}
}
}
}