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
Question
Exhibit
Options
- AgetDialRule
- BlistDialRule
- CgetDialRules
- DlistDialRules
- EaddDialRules
How the community answered
(37 responses)- A3% (1)
- B3% (1)
- C14% (5)
- D73% (27)
- E8% (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) -
getretrieves a single specific item by identifier, not a list; also missing the plural "s". - B (listDialRule) - correct verb (
list) but wrong object name - it'sDialRules(plural), notDialRulein the AXL schema. - C (getDialRules) -
getis for fetching one record; using it with a plural form is not a valid AXL pattern. - E (addDialRules) -
addis 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
Community Discussion
No community discussion yet for this question.
