Cloud Academy Reports API

The Reports API from Cloud Academy — 32 operation(s) for reports.

OpenAPI Specification

cloud-academy-reports-api-openapi.yml Raw ↑
swagger: '2.0'
info:
  title: QA Learning Management System Reports API
  description: "\n## Keys for QA API\n\nQA uses API keys to authenticate calls to its API.\n\nThe Authentication used is OAuth2 with client credential flow; Note that the SSL channel securely encrypts your keys pair.\n\n## How to find or generate Your API Key\n\nFor integrating with the QA API, you need to generate an API key pairs. Enterprise members with Admin permissions can generate and view their own API keys on the settings area of their Company Account [here](https://platform.qa.com/organizations/settings/api/).\n\nNote that each admin comes with his distinct API keys pair.\n\n## Revoking and Regenerating an API keys pair\n\nAt any time, an admin can generate new API keys pairs; by going through this step, the previous keys pair is revoked.\n\n## How to authenticate API calls using the keys pair\n\nIn order to authenticate API calls each request needs to provide a valid access token. \n\nTo generate a token, a dedicated endpoint exists:\n\n__https://platform.qa.com/oauth2/token/__\n\nThe token generation endpoint accepts a POST call and works using Basic Authentication where the user and the password to be provided are the API keys:\n\nusername is the CLIENT_ID\npassword is the CLIENT_SECRET\n\nIn addition to requiring the CLIENT_ID and CLIENT_SECRET for the authorization header, the API also requires the content-type to be set to 'application/x-www-form-urlencoded' and the body must contain 'grant_type=client_credentials'.\n\nThis is an example of the token generation in cURL:\n\n```bash\ncurl 'https://platform.qa.com/oauth2/token/' \n  -H 'accept: application/json'\n  -H 'authorization: Basic [YOUR_CLIENT_ID:YOUR_CLIENT_SECRET]'\n  -H 'content-type: application/x-www-form-urlencoded'\n  --data-raw 'grant_type=client_credentials'\n```\n\nThe token has a limited duration of 10 hours, so it could be cached to be reused and renewed when it expires, but it is also perfectly fine to generate a new one before each API call.\n\n## Get Help\nIn case of issues, more info can be found in the following [article](https://support.cloudacademy.com/hc/en-us/articles/360040446031-Cloud-Academy-API)\n"
  version: v1
host: platform.qa.com
basePath: /restapi
schemes:
- https
consumes:
- application/json
produces:
- application/json
security:
- oauth2: []
tags:
- name: Reports
paths:
  /v1/reports/certifications/:
    parameters: []
    post:
      operationId: v1_reports_certifications_create
      summary: '

        Triggers the generation of certification report, listing all uploaded member certifications including their level, achievement date and expiry date

        '
      description: '

        ## Description

        This endpoint triggers the generation of certification report, returning information about the triggered report generation job.

        One request can be made every 10 minutes per user. If you call this endpoint more than this, you will get an HTTP 429 TOO_MANY_REQUESTS response, with a Retry-After header. This header will provide the remaining time to wait.

        Since all parameters are optional, the payload is not mandatory therefore you can send an empty request.

        '
      parameters:
      - name: data
        in: body
        required: true
        schema:
          title: body
          required:
          - data
          type: object
          properties:
            data:
              title: data
              required:
              - attributes
              - type
              type: object
              properties:
                attributes:
                  title: attributes
                  required: []
                  type: object
                  properties: {}
                type:
                  title: type
                  type: string
                  example: certifications_report_request
      responses:
        '201':
          description: Jobs Properly Generated
          schema:
            title: body
            required:
            - data
            type: object
            properties:
              data:
                title: data
                required:
                - attributes
                - type
                type: object
                properties:
                  attributes:
                    title: attributes
                    required: []
                    type: object
                    properties:
                      job_id:
                        title: job_id
                        type: string
                      report_type:
                        title: report_type
                        type: string
                      requested_by:
                        title: requested_by
                        type: integer
                      status:
                        title: status
                        type: string
                      submission_date:
                        title: submission_date
                        type: string
                        format: date-time
                  type:
                    title: type
                    type: string
                    example: certifications_report_request
        '503':
          description: Service unavailable.
          examples:
            body:
              errors:
              - detail: The service is temporary unavailable. Please try again later.
                source:
                  pointer: /data
                status: '503'
        '500':
          description: Internal server error.
          examples:
            body:
              errors:
              - detail: Internal server error.
                source:
                  pointer: /data
                status: '500'
        '401':
          description: Executing the request without credentials.
          examples:
            body:
              errors:
              - detail: Authentication credentials were not provided.
                source:
                  pointer: /data
                status: '401'
      consumes:
      - application/vnd.api+json
      produces:
      - application/vnd.api+json
      tags:
      - Reports
  /v1/reports/content-access/:
    parameters: []
    post:
      operationId: v1_reports_content-access_create
      summary: Triggers the generation of a content access report
      description: '

        ## Description


        This endpoint triggers the generation of a content access report, returning information about the triggered report generation job.


        One request can be made every 10 minutes per user. If you call this endpoint more than this, you will get an HTTP 429 TOO_MANY_REQUESTS response, with a Retry-After header. This header will provide the remaining time to wait.


        Since all parameters are optional, the payload is not mandatory therefore you can send an empty request.

        '
      parameters:
      - name: data
        in: body
        required: true
        schema:
          title: body
          required:
          - data
          type: object
          properties:
            data:
              title: data
              required:
              - attributes
              - type
              type: object
              properties:
                attributes:
                  title: attributes
                  required: []
                  type: object
                  properties: {}
                type:
                  title: type
                  type: string
                  example: content_access_report_request
      responses:
        '201':
          description: Jobs Properly Generated
          schema:
            title: body
            required:
            - data
            type: object
            properties:
              data:
                title: data
                required:
                - attributes
                - type
                type: object
                properties:
                  attributes:
                    title: attributes
                    required: []
                    type: object
                    properties:
                      job_id:
                        title: job_id
                        type: string
                      report_type:
                        title: report_type
                        type: string
                      requested_by:
                        title: requested_by
                        type: integer
                      status:
                        title: status
                        type: string
                      submission_date:
                        title: submission_date
                        type: string
                        format: date-time
                  type:
                    title: type
                    type: string
                    example: content_access_report_request
        '503':
          description: Service unavailable.
          examples:
            body:
              errors:
              - detail: The service is temporary unavailable. Please try again later.
                source:
                  pointer: /data
                status: '503'
        '500':
          description: Internal server error.
          examples:
            body:
              errors:
              - detail: Internal server error.
                source:
                  pointer: /data
                status: '500'
        '401':
          description: Executing the request without credentials.
          examples:
            body:
              errors:
              - detail: Authentication credentials were not provided.
                source:
                  pointer: /data
                status: '401'
      consumes:
      - application/vnd.api+json
      produces:
      - application/vnd.api+json
      tags:
      - Reports
  /v1/reports/content-inventory-export/:
    parameters: []
    post:
      operationId: v1_reports_content-inventory-export_create
      summary: Triggers the generation of Content Inventory Report
      description: '

        ## Description

        This endpoint triggers the generation of Content Inventory Report, returning information about the triggered report generation job.

        One request can be made every 10 minutes per user. If you call this endpoint more than this, you will get an HTTP 429 TOO_MANY_REQUESTS response, with a Retry-After header. This header will provide the remaining time to wait.

        Please take a look at the ''model'' description of the data to know which parameters are mandatory and which are not.

        '
      parameters:
      - name: data
        in: body
        required: true
        schema:
          title: body
          required:
          - data
          type: object
          properties:
            data:
              title: data
              required:
              - attributes
              - type
              type: object
              properties:
                attributes:
                  title: attributes
                  required: []
                  type: object
                  properties:
                    content_statuses:
                      title: content_statuses
                      description: '[Optional] Max Length 10'
                      type: array
                      items: string
                    content_types:
                      title: content_types
                      description: '[Optional] Max Length 10'
                      type: array
                      items: string
                    created_by_ids:
                      title: created_by_ids
                      description: '[Optional] Max Length 200'
                      type: array
                      items: string
                    creation_end_date:
                      title: creation_end_date
                      description: '[Optional]'
                      type: string
                      format: date-time
                    creation_start_date:
                      title: creation_start_date
                      description: '[Optional]'
                      type: string
                      format: date-time
                    is_public:
                      title: is_public
                      description: '[Optional]'
                      type: boolean
                    last_modified_by_ids:
                      title: last_modified_by_ids
                      description: '[Optional] Max Length 200'
                      type: array
                      items: string
                    last_modified_end_date:
                      title: last_modified_end_date
                      description: '[Optional]'
                      type: string
                      format: date-time
                    last_modified_start_date:
                      title: last_modified_start_date
                      description: '[Optional]'
                      type: string
                      format: date-time
                type:
                  title: type
                  type: string
                  example: content_inventory_report_request
      responses:
        '201':
          description: Jobs Properly Generated
          schema:
            title: body
            required:
            - data
            type: object
            properties:
              data:
                title: data
                required:
                - attributes
                - type
                type: object
                properties:
                  attributes:
                    title: attributes
                    required: []
                    type: object
                    properties:
                      job_id:
                        title: job_id
                        type: string
                      report_type:
                        title: report_type
                        type: string
                      requested_by:
                        title: requested_by
                        type: integer
                      status:
                        title: status
                        type: string
                      submission_date:
                        title: submission_date
                        type: string
                        format: date-time
                  type:
                    title: type
                    type: string
                    example: content_inventory_report_request
        '403':
          description: Not permitted to view report details
          examples:
            body:
              errors:
              - detail: You don't have the permissions to access this API.
                source:
                  pointer: /data
                status: '403'
        '500':
          description: Internal server error.
          examples:
            body:
              errors:
              - detail: Internal server error.
                source:
                  pointer: /data
                status: '500'
        '503':
          description: Service unavailable.
          examples:
            body:
              errors:
              - detail: The service is temporary unavailable. Please try again later.
                source:
                  pointer: /data
                status: '503'
        '401':
          description: Executing the request without credentials.
          examples:
            body:
              errors:
              - detail: Authentication credentials were not provided.
                source:
                  pointer: /data
                status: '401'
      consumes:
      - application/vnd.api+json
      produces:
      - application/vnd.api+json
      tags:
      - Reports
  /v1/reports/content-progress/:
    parameters: []
    post:
      operationId: v1_reports_content-progress_create
      summary: Triggers the generation of Content Progress report [DEPRECATED]
      description: "\n## Description\nThis endpoint triggers the generation of Content Progress report, returning information about the triggered report generation job.\nOne request can be made every 10 minutes per user. If you call this endpoint more than this, you will get an HTTP 429 TOO_MANY_REQUESTS response, with a Retry-After header. This header will provide the remaining time to wait.\nSince all parameters are optional, the payload is not mandatory therefore you can send an empty request. \n\nThis report replaces the deprecated consumption-content report.\nThis API is deprecated: please use /v2/reports/content-progress/ instead.\n"
      parameters:
      - name: data
        in: body
        required: true
        schema:
          title: body
          required:
          - data
          type: object
          properties:
            data:
              title: data
              required:
              - attributes
              - type
              type: object
              properties:
                attributes:
                  title: attributes
                  required: []
                  type: object
                  properties:
                    team_ids:
                      title: team_ids
                      description: '[Optional] Max Length 200'
                      type: array
                      items: integer
                    user_ids:
                      title: user_ids
                      description: '[Optional] Max Length 200'
                      type: array
                      items: string
                type:
                  title: type
                  type: string
                  example: content_progress_report_request
      responses:
        '201':
          description: Jobs Properly Generated
          schema:
            title: body
            required:
            - data
            type: object
            properties:
              data:
                title: data
                required:
                - attributes
                - type
                type: object
                properties:
                  attributes:
                    title: attributes
                    required: []
                    type: object
                    properties:
                      job_id:
                        title: job_id
                        type: string
                      report_type:
                        title: report_type
                        type: string
                      requested_by:
                        title: requested_by
                        type: integer
                      status:
                        title: status
                        type: string
                      submission_date:
                        title: submission_date
                        type: string
                        format: date-time
                  type:
                    title: type
                    type: string
                    example: content_progress_report_request
        '503':
          description: Service unavailable.
          examples:
            body:
              errors:
              - detail: The service is temporary unavailable. Please try again later.
                source:
                  pointer: /data
                status: '503'
        '500':
          description: Internal server error.
          examples:
            body:
              errors:
              - detail: Internal server error.
                source:
                  pointer: /data
                status: '500'
        '401':
          description: Executing the request without credentials.
          examples:
            body:
              errors:
              - detail: Authentication credentials were not provided.
                source:
                  pointer: /data
                status: '401'
      consumes:
      - application/vnd.api+json
      produces:
      - application/vnd.api+json
      tags:
      - Reports
      deprecated: true
  /v1/reports/content-skills-export/:
    parameters: []
    post:
      operationId: v1_reports_content-skills-export_create
      summary: Triggers the generation of content skills report; retrieves skills relating to a content [DEPRECATED]
      description: '

        ## Description


        This endpoint triggers the generation of content skills report, returning information about the triggered report generation job.


        One request can be made every 10 minutes per user. If you call this endpoint more than this, you will get an HTTP 429 TOO_MANY_REQUESTS response, with a Retry-After header. This header will provide the remaining time to wait.


        Since all parameters are optional, the payload is not mandatory therefore you can send an empty request.

        This API is deprecated: please use /v2/reports/content-skills-export/ instead.

        '
      parameters:
      - name: data
        in: body
        required: true
        schema:
          title: body
          required:
          - data
          type: object
          properties:
            data:
              title: data
              required:
              - attributes
              - type
              type: object
              properties:
                attributes:
                  title: attributes
                  required: []
                  type: object
                  properties: {}
                type:
                  title: type
                  type: string
                  example: content_skills_report_request
      responses:
        '201':
          description: Jobs Properly Generated
          schema:
            title: body
            required:
            - data
            type: object
            properties:
              data:
                title: data
                required:
                - attributes
                - type
                type: object
                properties:
                  attributes:
                    title: attributes
                    required: []
                    type: object
                    properties:
                      job_id:
                        title: job_id
                        type: string
                      report_type:
                        title: report_type
                        type: string
                      requested_by:
                        title: requested_by
                        type: integer
                      status:
                        title: status
                        type: string
                      submission_date:
                        title: submission_date
                        type: string
                        format: date-time
                  type:
                    title: type
                    type: string
                    example: content_skills_report_request
        '503':
          description: Service unavailable.
          examples:
            body:
              errors:
              - detail: The service is temporary unavailable. Please try again later.
                source:
                  pointer: /data
                status: '503'
        '500':
          description: Internal server error.
          examples:
            body:
              errors:
              - detail: Internal server error.
                source:
                  pointer: /data
                status: '500'
        '401':
          description: Executing the request without credentials.
          examples:
            body:
              errors:
              - detail: Authentication credentials were not provided.
                source:
                  pointer: /data
                status: '401'
      consumes:
      - application/vnd.api+json
      produces:
      - application/vnd.api+json
      tags:
      - Reports
      deprecated: true
  /v1/reports/course-uplift-export/:
    parameters: []
    post:
      operationId: v1_reports_course-uplift-export_create
      summary: Triggers the generation of Course Uplift Report
      description: '

        ## Description

        This endpoint triggers the generation of Course Uplift Report, returning information about the triggered report generation job.

        One request can be made every 10 minutes per user. If you call this endpoint more than this, you will get an HTTP 429 TOO_MANY_REQUESTS response, with a Retry-After header. This header will provide the remaining time to wait.

        Please take a look at the ''model'' description of the data to know which parameters are mandatory and which are not.

        '
      parameters:
      - name: data
        in: body
        required: true
        schema:
          title: body
          required:
          - data
          type: object
          properties:
            data:
              title: data
              required:
              - attributes
              - type
              type: object
              properties:
                attributes:
                  title: attributes
                  required: []
                  type: object
                  properties:
                    end_date:
                      title: end_date
                      description: '[Optional]'
                      type: string
                      format: date-time
                    start_date:
                      title: start_date
                      description: '[Optional]'
                      type: string
                      format: date-time
                    team_ids:
                      title: team_ids
                      description: '[Optional] Max Length 200'
                      type: array
                      items: integer
                    user_ids:
                      title: user_ids
                      description: '[Optional] Max Length 200'
                      type: array
                      items: string
                type:
                  title: type
                  type: string
                  example: course_uplift_report_request
      responses:
        '201':
          description: Jobs Properly Generated
          schema:
            title: body
            required:
            - data
            type: object
            properties:
              data:
                title: data
                required:
                - attributes
                - type
                type: object
                properties:
                  attributes:
                    title: attributes
                    required: []
                    type: object
                    properties:
                      job_id:
                        title: job_id
                        type: string
                      report_type:
                        title: report_type
                        type: string
                      requested_by:
                        title: requested_by
                        type: integer
                      status:
                        title: status
                        type: string
                      submission_date:
                        title: submission_date
                        type: string
                        format: date-time
                  type:
                    title: type
                    type: string
                    example: course_uplift_report_request
        '403':
          description: Not permitted to view report details
          examples:
            body:
              errors:
              - detail: You don't have the permissions to access this API.
                source:
                  pointer: /data
                status: '403'
        '500':
          description: Internal server error.
          examples:
            body:
              errors:
              - detail: Internal server error.
                source:
                  pointer: /data
                status: '500'
        '503':
          description: Service unavailable.
          examples:
            body:
              errors:
              - detail: The service is temporary unavailable. Please try again later.
                source:
                  pointer: /data
                status: '503'
        '401':
          description: Executing the request without credentials.
          examples:
            body:
              errors:
              - detail: Authentication credentials were not provided.
                source:
                  pointer: /data
                status: '401'
      consumes:
      - application/vnd.api+json
      produces:
      - application/vnd.api+json
      tags:
      - Reports
  /v1/reports/cpe-score-export/:
    parameters: []
    post:
      operationId: v1_reports_cpe-score-export_create
      summary: Triggers the generation of cpe score report
      description: '

        ## Description


        This endpoint triggers the generation of cpe score report, returning information about the triggered report generation job.


        One request can be made every 10 minutes per user. If you call this endpoint more than this, you will get an HTTP 429 TOO_MANY_REQUESTS response, with a Retry-After header. This header will provide the remaining time to wait.


        Since all parameters are optional, the payload is not mandatory therefore you can send an empty request.

        '
      parameters:
      - name: data
        in: body
        required: true
        schema:
          title: body
          required:
          - data
          type: object
          properties:
            data:
              title: data
              required:
              - attributes
              - type
              type: object
              properties:
                attributes:
                  title: attributes
                  required: []
                  type: object
                  properties: {}
                type:
                  title: type
                  type: string
                  example: cpe_score_report_request
      responses:
        '201':
          description: Jobs Properly Generated
          schema:
            title: body
            required:
            - data
            type: object
            properties:
              data:
                title: data
                required:
                - attributes
                - type
                type: object
                properties:
                  attributes:
                    title: attributes
                    required: []
                    type: object
                    properties: {}
                  type:
                    title: type
                    type: string
                    example: cpe_score_report_request
        '503':
          description: Service unavailable.
          examples:
            body:
              errors:
              - detail: The service is temporary unavailable. Please try again later.
                source:
                  pointer: /data
                status: '503'
        '500':
          description: Internal server error.
          examples:
            body:
              errors:
              - detail: Internal server error.
                source:
                  pointer: /data
                status: '500'
        '401':
          description: Executing the request without credentials.
          examples:
            body:
              errors:
              - detail: Authentication credentials were not provided.
                source:
                  pointer: /data
                status: '401'
      consumes:
      - application/vnd.api+json
      produces:
      - application/vnd.api+json
      tags:
      - Reports
  /v1/reports/custom-reports/:
    parameters: []
    get:
      operationId: v1_reports_custom-reports_list
      summary: Retrieves all available custom reports
      description: '

        ## Description


        This endpoint provides all available custom reports for a company.


        The response contains the list of custom reports along with a brief description and usage information for each.

        The "template" field contains a list of the components of the request payload. Use the information in the template field to format the report data.

        '
      parameters: []
      responses:
        '200':
          description: Retrieves all available custom reports
          schema:
            title: body
            required:
            - data
            type: object
            properties:
              data:
                title: data
                type: array
                items:
                  required:
                  - attributes
                  - type
                  type: object
                  properties:
                    attributes:
                      

# --- truncated at 32 KB (137 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/cloud-academy/refs/heads/main/openapi/cloud-academy-reports-api-openapi.yml