Community Tip - Learn all about PTC Community Badges. Engage with PTC and see how many you can earn! X
Hello,
you can use a command like this:
{
"filters": {
"type": "EQ",
"fieldName": "CustomerId",
"value": 2
}
}
If necessary, use this older article as a guide for the parameters (TWX 8 doc):
Hello,
you can use a command like this:
{
"filters": {
"type": "EQ",
"fieldName": "CustomerId",
"value": 2
}
}
If necessary, use this older article as a guide for the parameters (TWX 8 doc):
Iam getting error when i given this query. What is the mistake here. @M4RC
{
"filters":
{
"type": "AND",
"filters": [{
"type": "EQ",
"fieldName": "MachineName",
"value": MachineName
},{
"type": "EQ",
"fieldName": "TaskName",
"value":oldTaskName
}]
}
};
You can try this:
{"filters":
{
"type": "And",
"filters": [
{
"type": "EQ",
"fieldName": "MachineName",
"value": "MachineName"
}, {
"type": "EQ",
"fieldName": "TaskName",
"value": "TaskName"
}
]
}
}
Example for Values:
"value": "string"
"value": 10
"value": 1.2
You need to remove the last ;
Thank you