Question 1mediummultiple choice
Read the full Platform Features and Integration explanation →SNOW-CAD Platform Features and Integration • Complete Question Bank
Complete SNOW-CAD Platform Features and Integration question bank — all 0 questions with answers and detailed explanations.
Refer to the exhibit.
{
"request": {
"method": "POST",
"url": "https://instance.service-now.com/api/now/table/incident",
"headers": {
"Content-Type": "application/json",
"Accept": "application/json"
},
"body": {
"short_description": "Email not working",
"caller_id": "6816f79cc0a8016400c3a0fbe8b14d1c",
"category": "network"
}
}
}Refer to the exhibit.
Script Include: getIncidents.gs
var getIncidents = Class.create();
getIncidents.prototype = Object.extendsObject(AbstractAjaxProcessor, {
getOpenIncidents: function() {
var gr = new GlideRecord('incident');
gr.addQuery('active', true);
gr.query();
var result = [];
while(gr.next()) {
result.push({
'number': gr.getValue('number'),
'short_description': gr.getValue('short_description')
});
}
return result;
}
});Drag steps to the numbered slots on the right, or tap a step then tap a slot.
Drag steps to the numbered slots on the right, or tap a step then tap a slot.
Drag a concept onto its matching description — or click a concept then click the description.
Automation
Self-service portal
Conversational AI chatbot
Reporting and dashboards
CMDB population and maintenance
Drag a concept onto its matching description — or click a concept then click the description.
Read
Create
Update (full replacement)
Update (partial)
Delete
{
"integration": {
"name": "External Order System",
"type": "REST",
"endpoint": "https://external.com/api/orders",
"authentication": {
"type": "basic",
"username": "${mid.username}",
"password": "${mid.password}"
},
"headers": {"Content-Type":"application/json"}
}
}