Exam PEGAPCSSA87V1 All QuestionsBrowse all questions from this exam
Question 56

A city resident can report potholes to the Department of Transportation by logging in to a mobile Pega Platform application that utilizes the Pega API.

Which two Pega API interactions do you use to facilitate this? (Choose two.)

    Correct Answer: A, B

    To facilitate reporting potholes through a mobile Pega Platform application, you first submit the report using POST/cases, as this allows the creation of a new case. Then, accessing the related case type to report using GET/casetypes is necessary, as it allows the system to identify and present the correct case type template for the user to fill out when reporting a pothole.

Discussion
Alex1999Options: AB

Answer is A and B

OtherOptions: AB

The Pega API interactions include: Log in to the app by calling GET /authenticate. View the list of possible issues to report by calling GET /casetypes . View the list of city regions by calling GET /data/D_CityRegionList . Select an issue and a city region. Submit the report by calling POST /cases . Url: https://academy.pega.com/topic/exposing-application-service/v5 D is wrong as the method is mentioned as PUT/authenticate (should be GET) so only two correct options left are A and B

11111212aaOptions: AB

Consider the use case of an application that allows electric vehicle drivers to report issues with city-owned chargers. As users encounter an issue, they access the application and report the issue. A city employee then reviews the issue report for further action. The Pega API interactions include: 1. Log in to the app by calling GET /authenticate. 2. View the list of possible issues to report by calling GET /casetypes. 3. View the list of city regions by calling GET /data/D_CityRegionList. 4. Select an issue and a city region. 5. Submit the report by calling POST /cases. 6. View all submitted reports by calling GET /cases. 7. Open a specific report to view details by calling GET /cases/ID.

DoctorSin

why b?