nerdexam
Cisco

300-835 · Question #86

Refer to the exhibit. An engineer is creating a custom application using the Cisco Unified CM AXL API. The engineer wants to retrieve the list of all available SIP Dial Rules in Cisco Unified CM. Whic

The correct answer is D. listDialRules. D is correct because the Cisco AXL API follows a consistent naming convention: list<Object> methods retrieve collections of items, and the object name uses the plural form when the API resource itself is plural - in this case, listDialRules returns all SIP Dial Rules configured i

Cisco Unified Communications Manager API

Question

Refer to the exhibit. An engineer is creating a custom application using the Cisco Unified CM AXL API. The engineer wants to retrieve the list of all available SIP Dial Rules in Cisco Unified CM. Which method accomplishes this task?

Exhibit

300-835 question #86 exhibit

Options

  • AgetDialRule
  • BlistDialRule
  • CgetDialRules
  • DlistDialRules
  • EaddDialRules

How the community answered

(37 responses)
  • A
    3% (1)
  • B
    3% (1)
  • C
    14% (5)
  • D
    73% (27)
  • E
    8% (3)

Explanation

D is correct because the Cisco AXL API follows a consistent naming convention: list<Object> methods retrieve collections of items, and the object name uses the plural form when the API resource itself is plural - in this case, listDialRules returns all SIP Dial Rules configured in Unified CM.

Why the others are wrong:

  • A (getDialRule) - get retrieves a single specific item by identifier, not a list; also missing the plural "s".
  • B (listDialRule) - correct verb (list) but wrong object name - it's DialRules (plural), not DialRule in the AXL schema.
  • C (getDialRules) - get is for fetching one record; using it with a plural form is not a valid AXL pattern.
  • E (addDialRules) - add is a write operation for creating new records, not retrieving them.

Memory tip: In AXL, think GLAADU - Get (one), List (many), Add, Update, Delete, Remove. When you need all of something, always reach for list + the plural noun.

Topics

#AXL API#SIP Dial Rules#Cisco Unified CM#SOAP API methods

Community Discussion

No community discussion yet for this question.

Full 300-835 Practice