Conversation

Pegasystems Inc.
CA
Last activity: 19 Aug 2025 12:14 EDT
Supercharge Your Digital Channels: The Ultimate Guide to Pega Constellation DX APIs
Enjoying this article, please refer to the link for more articles - Constellation 101
Why
Modern enterprise applications need to deliver seamless, scalable digital experiences across diverse channels and devices. A key challenge is enabling external systems and front-end applications to interact with Pega’s powerful backend—managing cases, data records, assignments, and more—without direct access to the platform UI. How can developers efficiently perform core operations such as creating, updating, searching, and managing cases, data, and assignments using standardized APIs?
Solution Overview
Pega's DX APIs (Digital Experience APIs) provide a robust, RESTful interface for integrating Pega capabilities into any digital channel or custom front-end. By leveraging DX APIs, developers can:
- Create, update, and delete data records in Pega data tables using POST, PATCH, and DELETE methods.
- Query and filter data dynamically, supporting searches, sorting, paging, and aggregation directly through API requests.
- Manage cases and assignments, including case creation, updating case details, navigating screenflows, and finishing assignments.
- Interact with attachments, followers, notifications, and more, providing full lifecycle support for case management.
- Retrieve personalized worklists, recent items, and landing pages, enabling tailored experiences for end users.
These APIs enable headless and low-code development, allowing organizations to build modern, channel-agnostic solutions that integrate seamlessly with Pega’s backend processes and data.
Example Use Cases Illustrated in This Article
- Add/Edit/Delete a Data Record: Easily manage transactional or reference data through simple API calls.
- Query Data Tables: Execute complex searches, filters, sorting, and grouping for reporting and analytics.
- Case Management: Create new cases, update them, and track progress using assignment APIs.
- Attachment Handling: Upload and retrieve files associated with cases.
- User Experience Enhancements: Fetch notifications, recent items, landing pages, and user-specific worklists.
Each sample request demonstrates how DX APIs can be used to power a wide range of digital experiences, from simple CRUD operations to sophisticated, dynamic user interfaces— without relying on Pega’s UI.
Ready to accelerate your digital transformation? Explore the sample requests and discover how DX APIs can unlock new possibilities for your Pega applications!
Action | Method | URL | Category | Sample API Request |
Add a record in the Data table | Post |
https://{LabInstanceURL}/prweb/app/retail-banking/api/application/v2/data/D_TransactionHistorySavable |
Data |
|
Edit a record in the Data table | Patch | https://{LabInstanceURL}/prweb/app/retail-banking/api/application/v2/data/D_TransactionHistorySavable | Data |
|
Delete a record in the Data table | DELETE | https://{LabInstanceURL}/prweb/app/retail-banking/api/application/v2/data/D_TransactionHistorySavable?dataViewParameters=%7B%22pyGUID%22%3A%22c81983f1-37cc-46bd-a936-ab296daf9eec%22%7D | Data |
|
Datatable Query without parameters | Post | https://{LabInstanceURL}/prweb/app/retail-banking/api/application/v2/data_views/D_TransactionHistoryList | Data |
|
Datatable Query without parameters | Post | https://{LabInstanceURL}/prweb/app/retail-banking/api/application/v2/data_views/D_TransactionHistoryList | Data |
|
Datatable dynamic filter search | Post | https://{LabInstanceURL}/prweb/app/retail-banking/api/application/v2/data_views/D_TransactionHistoryList | Data |
|
Datatable dynamic sort on UI | Post | https://{LabInstanceURL}/prweb/app/retail-banking/api/application/v2/data_views/D_TransactionHistoryList | Data |
|
Datatable dynamic GroupBy on UI | Post | https://{LabInstanceURL}/prweb/app/retail-banking/api/application/v2/data_views/D_TransactionHistoryList | Data |
|
Datatable dynamic Combine Column | NA | NA | At run time | |
Create Case | POST | https://{LabInstanceURL}/prweb/app/retail-banking/api/application/v2/cases?viewType=page | Case |
|
Create Case - Page | POST | https://{LabInstanceURL}/prweb/app/retail-banking/api/application/v2/cases?viewType=none&pageName=none | Case |
|
Create Case - PageList | POST | https://{LabInstanceURL}/prweb/app/retail-banking/api/application/v2/cases?viewType=none&pageName=none | Case |
|
Finish Assignment | PATCH | https://{LabInstanceURL}/prweb/app/retail-banking/api/application/v2/assignments/{AssignmentKey}/actions/{ViewName}?viewType=form | Assignment |
|
Open Assignment | GET | https://{LabInstanceURL}/prweb/app/retail-banking/api/application/v2/assignments/{AssignmentKey}?viewType=page | Assignment | |
Case Summary | GET | https://{LabInstanceURL}/prweb/app/retail-banking/api/application/v2/cases/{CasInseKey}/views/pyCaseSummary | Case | |
Screenflow - Next | PATCH | https://{LabInstanceURL}/prweb/app/retail-banking/api/application/v2/assignments/{AssignmentKey}/actions/Create?viewType=page | Assignment |
|
Screenflow - Previous | PATCH | https://{LabInstanceURL}/prweb/app/retail-banking/api/application/v2/assignments/{AssignmentKey}/navigation_steps/previous?viewType=page | Assignment | |
FillForm with AI | PATCH | https://{LabInstanceURL}/prweb/app/retail-banking/api/application/v2/assignments/{AssignmentKey}/actions/Create/refresh?fillFormWithAI=true | Assignment |
|
Optional Actions | GET | https://{LabInstanceURL}/prweb/app/retail-banking/api/application/v2/cases/{CasInseKey}/actions/pyUpdateCaseDetails?excludeAdditionalActions=true&viewType=form | Case | NA |
Details Tab | GET | https://{LabInstanceURL}/prweb/app/retail-banking/api/application/v2/cases/{CasInseKey}/views/pyDetailsTabContent | Case | NA |
Audit History | POST | https://{LabInstanceURL}/prweb/app/retail-banking/api/application/v2/data_views/D_pyWorkHistory | Data |
|
Pulse | GET | https://{LabInstanceURL}/prweb/app/retail-banking/api/application/v2/cases/{CasInseKey}/views/pyCasePulseOnly | Case | NA |
CaseFeed | GET | https://{LabInstanceURL}/prweb/app/retail-banking/api/application/v2/feeds/pyCaseFeed?filterFor={CasInseKey}&feedClass={CaseClassName}&filterBy=&pageSize=10&olderThan= | Feeds | |
Attachments (Step1) | POST | https://{LabInstanceURL}/prweb/app/retail-banking/api/application/v2/attachments/upload | Attachments | appendUniqueIdToFileName: true file: (binary) |
Attachments (Step2) | POSt | https://{LabInstanceURL}/prweb/app/retail-banking/api/application/v2/cases/{CasInseKey}/attachments | Attachments |
|
GetAttachment | GET | https://{LabInstanceURL}/prweb/app/retail-banking/api/application/v2/cases/{CasInseKey}/attachments?includeThumbnail=false | Attachments | |
Add a Follower | POST | https://{LabInstanceURL}/prweb/app/retail-banking/api/application/v2/cases/{CasInseKey}/followers | Case |
|
Delete a follower | DELETE | https://{LabInstanceURL}/prweb/app/retail-banking/api/application/v2/cases/{CasInseKey}/followers/operatorID | Case | |
Follow Cases | POST | https://{LabInstanceURL}/prweb/app/retail-banking/api/application/v2/data_views/D_pyMyFollowedCases | Data |
|
My Worklist | POST | https://{LabInstanceURL}/prweb/app/retail-banking/api/application/v2/data_views/D_pyMyWorkList | Data |
|
Recents | GET | https://{LabInstanceURL}/prweb/app/retail-banking/api/application/v2/recents?maxResultsToFetch=15 | Recents | |
Notifications | GET | https://{LabInstanceURL}/prweb/app/retail-banking/api/application/v2/data_views/D_pyGetCurrentUserNotifications | Data | |
LandingPages | GET | https://{LabInstanceURL}/prweb/app/retail-banking/api/application/v2/pages/pyWorklist?pageClass=Data-Portal | Pages | Examples: Home - https://lab-07237-bos.lab.pega.com/prweb/app/retail-banking/api/applica… Dashboard - https://lab-07237-bos.lab.pega.com/prweb/app/retail-banking/api/applica… Explore Data - https://lab-07237-bos.lab.pega.com/prweb/app/retail-banking/api/applica… |