ServiceNow Certified Implementation Specialist – Event Management — Question 49
Within a PowerShell script, which two URI’s could you use to log events directly to the ServiceNow event table? (Choose two.)
Answer options
- A. https://[Your_ServiceNow_instance_URL]/rest_api/now/my_tables/em_event
- B. https://[Your_ServiceNow_instance_URL]/api/global/em/jsonv2
- C. https://[Your_ServiceNow_instance_URL]/api/now/table/em_event
- D. https://[Your_ServiceNow_instance_URL]/api/table/em_event
- E. https://[Your_ServiceNow_instance_URL]/rest_api/now/table/em_event
Correct answer: B, C
Explanation
The correct URIs for logging events to the ServiceNow event table are B and C. Option B uses the global API specifically designed for event logging, while option C directly accesses the event table through the REST API. Options A, D, and E are either incorrect endpoints or not specifically targeted for logging events to the event table.