Workday Reporting website screenshot

Workday Reporting

APIs for accessing Workday reporting functionality including custom reports, report data extraction, and report management.

6 APIs 0 Features
AnalyticsBusiness IntelligenceFinancial ReportingHr DataReporting

APIs

Workday Report as a Service (RaaS)

REST API for retrieving report data from custom reports in Workday.

Workday Custom Reports API

API for managing and executing custom reports programmatically.

Workday Advanced Reports API

API for accessing advanced reporting features including matrix reports and composite reports.

Workday Prism Analytics REST API

REST API for working with Workday Prism Analytics tables, data change tasks, and datasets. Enables programmatic creation and management of analytics data including ingesting ext...

Workday Prism Analytics SOAP Web Service

SOAP web service for creating, editing, and retrieving objects related to Prism Analytics, including analytic dimension business objects, analytic dimension hierarchies, and ana...

Workday WQL API

Workday Query Language (WQL) API enabling SQL-like querying of Workday data through REST endpoints. Provides high-performance data access for reporting and analytics use cases, ...

Collections

Pricing Plans

Rate Limits

Workday Reporting Rate Limits

1 limits

RATE LIMITS

FinOps

JSON Structure

Workday Reporting Structure

0 properties

JSON STRUCTURE

Resources

🔗
TrustCenter
TrustCenter
🔗
DomainSecurity
DomainSecurity
🔑
Authentication
Authentication
🌐
DeveloperPortal
DeveloperPortal
🔗
Community
Community
🚀
GettingStarted
GettingStarted
🔗
Documentation
Documentation
🔑
Authentication
Authentication
🔗
RateLimits
RateLimits
🟢
StatusPage
StatusPage
💬
Support
Support
📜
TermsOfService
TermsOfService
📜
PrivacyPolicy
PrivacyPolicy
📰
Blog
Blog
🔗
Website
Website
📝
Signup
Signup
👥
GitHubOrganization
GitHubOrganization
🔗
Reference
Reference
🔗
Marketplace
Marketplace
🔗
Partners
Partners

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Workday Reporting Workday Report-as-a-Service (RaaS) API
  version: v1
request:
  auth:
    type: basic
    username: '{{username}}'
    password: '{{password}}'
items:
- info:
    name: Reports
    type: folder
  items:
  - info:
      name: Workday Reporting Get report data
      type: http
    http:
      method: GET
      url: https://wd2-impl-services1.workday.com/ccx/service/customreport2/{tenant}/:reportOwner/:reportName
      params:
      - name: reportOwner
        value: ''
        type: path
        description: Username of the report owner in Workday, typically the integration system user (ISU) account that owns
          the report
      - name: reportName
        value: ''
        type: path
        description: Name of the custom report as defined in Workday. Must match the report name exactly, using underscores
          in place of spaces.
      - name: format
        value: ''
        type: query
        description: Response format for the report data. Determines the Content-Type of the response body.
      - name: Employee_ID
        value: ''
        type: query
        description: Example prompt parameter for filtering by Employee ID. Actual parameters depend on the prompts configured
          in the report definition.
      - name: Effective_Date
        value: ''
        type: query
        description: Example prompt parameter for filtering by effective date in YYYY-MM-DD format. Actual parameters depend
          on the prompts configured in the report definition.
      - name: Organization
        value: ''
        type: query
        description: Example prompt parameter for filtering by organization WID or reference ID. Actual parameters depend
          on the prompts configured in the report definition.
      - name: limit
        value: ''
        type: query
        description: Maximum number of rows to return per page
      - name: offset
        value: ''
        type: query
        description: Number of rows to skip for pagination
    docs: Execute a Workday custom report and retrieve its data. The report must have web service enabled in its report definition.
      Returns data in JSON format by default, with support for CSV, XML, and GData formats via the format parameter. Supports
      prompt-based filtering through query parameters that match the report prompt names configured in Workday. Pagination
      is supported through limit and offset parameters for large result sets.
- info:
    name: Report Metadata
    type: folder
  items:
  - info:
      name: Workday Reporting Get report field metadata
      type: http
    http:
      method: GET
      url: https://wd2-impl-services1.workday.com/ccx/service/customreport2/{tenant}/:reportOwner/:reportName/fields
      params:
      - name: reportOwner
        value: ''
        type: path
        description: Username of the report owner
      - name: reportName
        value: ''
        type: path
        description: Name of the custom report
    docs: Retrieve metadata about a report including available output fields, field data types, and prompt parameters that
      can be used for filtering. Useful for discovering the structure of a report before executing it, and for building dynamic
      integrations that adapt to report schema changes.
bundled: true