Summary
Get Service Instance Data
Description
Returns service related data
Route
POST /formbuilder/fetchData
Roles
admin
apiwrite
operator
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
service |
* |
yes |
Service name |
instance_key |
* |
yes |
Key for the data |
val |
* |
yes |
Value to search |
Copied to Clipboard
{
"service": {
"description": "Service name"
},
"instance_key": {
"description": "Key for the data"
},
"val": {
"description": "Value to search"
}
}
Copied to Clipboard
{
"type": "object",
"properties": {
"service": {
"description": "Service name"
},
"instance_key": {
"description": "Key for the data"
},
"val": {
"description": "Value to search"
}
},
"required": [
"service",
"instance_key",
"val"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
data |
object |
Json object of service instance |
Copied to Clipboard
{
"data": true
}
Copied to Clipboard
{
"description": "Json object of service instance",
"type": "object",
"properties": {
"data": true
},
"required": [
"data"
],
"additionalProperties": false
}