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 enim in",
"sourceType": "qui eiusmod",
"path": "sit",
"verb": "POST",
"origin": "non in ipsum Lorem"
},
{
"name": "dolore commodo laboris occaecat enim",
"sourceType": "voluptate",
"path": "ea deserunt exercitation amet mollit",
"verb": "POST",
"origin": "laboris"
},
{
"name": "veniam aliquip anim est non",
"sourceType": "cupidatat dolor Duis do",
"path": "labore dolor nulla eu cillum",
"verb": "GET",
"origin": "nostrud sit nisi pariatur"
},
{
"name": "dolor esse ipsum in",
"sourceType": "sunt magna",
"path": "magna elit",
"verb": "GET",
"origin": "elit velit ad ut"
},
{
"name": "veniam",
"sourceType": "incididunt mollit pariatur",
"path": "laboris ad",
"verb": "GET",
"origin": "id ut in"
}
]
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"
}
}
}
}