URL
The value for this input datatype will be available in the session object in the following format:
| Attribute Name | Datatype | Description |
| meta | map | URL Meta (A) |
| value | string | The URL has to be set here. Ex: https://zylker.com |
| Attribute Name | Datatype | Description |
| type | String | Value should be 'url' |
| value | String | The URL has to be set here. Ex: https://zylker.com |
Sample Code:
Copied{
"value":"https://zylker.com",
"meta":{
"type":"url",
"value":"https://zylker.com"
}
}Format to be returned in response object:
Copiedresponse=map();
response.put('url' , "https://zylker.com”);
return response;