Skip to main content
Peakon
Last Updated: 2026-02-06
Concept: Survey Answer Export API

Concept: Survey Answer Export API

The Survey Answer Export feature enables your organization to export nonaggregated survey answers from Workday Peakon Employee Voice into a third-party tool. Example: Workday Prism, Workday People Analytics (VIBE Index), or your own business intelligence (BI) tool.
You can use the
Get Answers
API to build your own custom analysis. Exporting these answers enables you to discover the story behind the metrics and use meaningful insights to drive better people decisions to improve your organization.

Survey Answer Export Details

With Survey Answer Export, you can extract survey scores and responses across all question sets, along with identifying email or employee IDs. This process can be a custom integration, where you develop a custom connector to retrieve the data, or it can be included as part of a Workday Prism Integration.
The Survey Answer Export is:
  • Designed for organizations with appropriate safeguards and people analytics teams who wish to have access to identifiable survey data.
  • Designed for data analysts and developers who want to automate data transfers from Workday Peakon to third-party tools.
  • Available at company level only. It's not possible to enable the export to apply to a subset of employees.
  • Available on request to all customers.
When you enable the feature, you can customize the privacy message displayed on employee survey landing pages. This ensures transparency about how their information is managed and protected.
If you don’t create a custom message, the Workday-provided default message displays. Instructions for customizing the privacy text are available in the product documentation. Instructions on how to update this messaging are available at Customize Survey Disclaimer.

Use Cases

You can use Survey Answer Export to examine the relationship between survey scores and other metrics:
  • Determine if increased compensation lead to higher engagement.
  • Analyze if career progression and participation in talent programs lead to higher survey scores.
  • Identify if an increase in growth scores lead to lower employee turnover.
  • Track if employees with higher wellbeing scores have less first aid incidents.

Considerations

  • Consider the potential impact of identifiable data exports on survey participation and response rates.
  • You can only export survey answers received after enabling the Survey Answer Export feature.
  • Recalculating raw scores into aggregated scores might not exactly match the scores displayed in Peakon, since BI tools apply different aggregation logic.
  • Recalculating raw scores into aggregated scores in a BI tool might not lead to an exact match with the scores in Workday Peakon because external tools may apply different data aggregation logic.
  • If you also need to export aggregated data, use our aggregated APIs instead.
  • Enabling data export can affect employee perceptions of survey confidentiality. Communicate the purpose and safeguards clearly in your prelaunch communications.

Getting Started

To enable the feature, raise a case with Workday Customer Care. Then, follow this process:
  1. Consult internal stakeholders such as Legal, Privacy, and People Analytics teams to ensure alignment.
  2. Provide documentation to your development team to include survey data in your analytics workflow.
  3. Set a go-live date for enabling the feature.
    Recommendation
    : Don’t activate during an active survey round. Only responses submitted after the enablement date appear in exports.
  4. Communicate changes to employees before launch. Explain how their data will be analyzed to improve the employee experience.
  5. Once ready, Customer Care can enable the feature on your preferred date.
  6. Update the customizable survey landing page text to reflect your organization’s privacy messaging.

Set Up Integration with Workday Prism or Workday People Analytics

Alpaca Authentication ensures secure data transfer from Workday Peakon Employee Voice into Workday Prism Analytics or Workday People Analytics. After enabling the Raw Data Export API, a tenant mapping is configured to complete authentication.
Contact Customer Care to enable the feature and request the tenant mapping to complete the integration.

Set Up Integration with a Third Party Tool

For external BI or data visualization tools (Example: Tableau, Power BI, or internal data warehouses), you can create a Custom Integration using the Peakon API.
  1. Contact Workday Customer Care to enable the Raw Data Export API.
  2. Create a custom app in
    Administration
    Integrations
    Custom Apps
    .
  3. Under
    Permissions
    , select
    Answer
    (this option appears after the functionality is enabled).
  4. Copy the generated access token and store it securely.
  5. Peakon displays the newly created integration under Overview, where you can select Remove to revoke access if needed.

Authentication with Peakon API

As referenced in the API authentication documentation, you can use the access token to get a JWT authorization token. You can then use the token to query the GET end-points in the Peakon API. Example: To retrieve the scores in the user account that you can make a GET call to https://api.peakon.com/v1/engagement/overview.
Example: To retrieve engagement scores for the authenticated account:
GET https://api.peakon.com/v1/engagement/overview
For more details, visit Concept: Peakon API and Authentication.

Calling the Endpoint

After obtaining a JWT authorization token, you can call the Answer Export endpoint with a GET request:
GET https://api.peakon.com/v1/answers/export

Adjusting the Page Size

You can adjust the number of answers returned using the
per_page
parameter.
Example:
GET https://api.peakon.com/v1/answers/export?per_page=50
The maximum number of records you can return is 20,000 in a single request.