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.)
A.
Submit the report using POST/cases
B.
Access the related case type to report using GET/casetypes
C.
Update the report using GET/cases
D.
Log into the application using PUT/authenticate
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.
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
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
11111212aa
1 year, 3 months agoOther
1 year, 7 months agoDoctorSin
1 year, 8 months agoAlex1999
1 year, 8 months ago