Generate Elements Runnable Item

Generate Elements Runnable Item

Generate designer elements for a given runnable item.

Request
URI
POST
https://vra-interop-222-139.lvn.broadcom.net/form-service/api/forms/designer/runnable-item-elements
COPY
Query Parameters
string
externalType
Optional

External type


Request Body
RunnableItem of type(s) application/json
Required

Show optional properties

{
    "id": "string",
    "type": "string"
}
{
    "id": "string",
    "name": "string",
    "description": "string",
    "projectId": "string",
    "type": "string",
    "inputParameters": [
        {
            "type": "string",
            "name": "string",
            "description": "string"
        }
    ],
    "outputParameters": [
        {
            "type": "string",
            "name": "string",
            "description": "string"
        }
    ],
    "endpointLink": "string",
    "inputBindings": [
        {
            "inputKey": "string",
            "value": "string",
            "type": {
                "dataType": "string",
                "referenceType": "string",
                "fields": [
                    "ComplexTypeField Object"
                ],
                "isMultiple": false
            },
            "bindingAction": "BindingAction Object"
        }
    ]
}
string
id
Required

id

string
name
Optional

name

string
description
Optional

description

string
projectId
Optional

projectId

string
type
Required

type

array of object
inputParameters
Optional

inputParameters

array of object
outputParameters
Optional

outputParameters

string
endpointLink
Optional

endpointLink

array of object
inputBindings
Optional

inputBindings

Authentication
This operation uses the following authentication methods.
Responses
200

'Success' with generated elements for provided RunnableItem object

Returns string of type(s) application/json
Operation doesn't return any data structure

400

'Bad Request' if RunnableItem is not in specified format

Returns string of type(s) application/json
Operation doesn't return any data structure

403

'Forbidden' no forms viewer access rights

Returns string of type(s) application/json
Operation doesn't return any data structure

Code Samples
COPY
                    curl -X POST -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{"id:"string","type:"string"}' https://{api_host}/form-service/api/forms/designer/runnable-item-elements