PCSSA Exam QuestionsBrowse all questions from this exam

PCSSA 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.)

Show Answer
Correct Answer: AB

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

5 comments
Sign in to comment
Alex1999
Mar 1, 2024

Answer is A and B

Other
Apr 14, 2024

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

11111212aa
Aug 3, 2024

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
Mar 27, 2024

why b?

DKMOptions: AB
Apr 10, 2025

https://community.pega.com/sites/pdn.pega.com/files/help_v85/procomhelpmain.htm#pega_api/paga-api-city-services-con.htm