List of questions
Related questions
Question 210 - MCD - Level 1 discussion
A shopping API contains a method to look up store details by department.
To get the information for a particular store, web clients will submit requests with a query parameter named department and uri parameter named storeId
What is valid RAML snippet that supports requests from a web client to get a data for a specific storeId and department name?
A.
1. /department: 2. get: 3. uriParameter: 4. storeId:
B.
1. get: 2. uriParameter: 3. {storeId}: 4. queryParameter: 5. department:
C.
1. get: 2. queryParameter: 3. department: 4. uriParameter: 5. {storeId}:
D.
1. /{storeId}: 2. get: 3. queryParameter: 4. department:
Your answer:
0 comments
Sorted by
Leave a comment first