|
|
• The Salesforce instance URL or the custom URL must be the prefix in the request URL.
• /query?q=' is used followed by the query where space is replaced by '+'.
• The response will be in JSON format.
• For more information, see Salesforce documentation.
|

{
"totalSize": 2,
"done": true,
"records": [
{
"attributes": {
"type": "SVMXA360__SM_TA_AssetTechnicalAttribute__c",
"url": "/services/data/v55.0/sobjects/SVMXA360__SM_TA_AssetTechnicalAttribute__c/a111g000002UZDfAAO"
},
"Id": "a111g000002UZDfAAO",
"SVMXA360__AttributeId__r": {
"attributes": {
"type": "SVMXA360__SM_TA_TechnicalAttribute__c",
"url": "/services/data/v55.0/sobjects/SVMXA360__SM_TA_TechnicalAttribute__c/a131g000000zDyoAAE"
},
"Name": "Steam_Wand"
},
"SVMXA360__Value__c": "101"
},
{
"attributes": {
"type": "SVMXA360__SM_TA_AssetTechnicalAttribute__c",
"url": "/services/data/v55.0/sobjects/SVMXA360__SM_TA_AssetTechnicalAttribute__c/a111g000002UZDgAAO"
},
"Id": "a111g000002UZDgAAO",
"SVMXA360__AttributeId__r": {
"attributes": {
"type": "SVMXA360__SM_TA_TechnicalAttribute__c",
"url": "/services/data/v55.0/sobjects/SVMXA360__SM_TA_TechnicalAttribute__c/a131g000000zA5SAAU"
},
"Name": "Filter_condition"
},
"SVMXA360__Value__c": "Working"
}
]
}
|
|
• Similarly, you can also retrieve all the attributes specific to a template. The following is a sample query:
/services/data/v55.0/queryq=SELECT++SVMXA360__AttributeId__r.Name+FROM+SVMXA360__SM_TA_TemplateItem__c+WHERE+SVMXA360__Template • You can retrieve all technical tributes that are checked by the A360 maintenance plan engine for a specific asset:
/services/data/v58.0/query?q=SELECT+Id,+SVMXA360__TechnicalAttribute__r.SVMXA360__DeveloperName__c,+SVMXA360__TechnicalAttribute |