• Retrieves a paginated history of all notable changes made to a data product. Each changelog entry captures the operation type, affected property, and timestamp. Use this endpoint to track the history of changes or data product evolution over time.

    Parameters

    • dataProductId: string

      Unique identifier of the data product. Must be a valid GUID assigned when the data product was created.

    • query: { limit?: number; page?: number; sort?: "+createdAt" | "-createdAt" }

      an object with query parameters

      • Optionallimit?: number

        Maximum number of items to return per page.

      • Optionalpage?: number
      • Optionalsort?: "+createdAt" | "-createdAt"

        Sort order for changelog entries. Use +createdAt for oldest first or -createdAt for newest first. Prefix with + for ascending or - for descending order. Default: -createdAt.

    • Optionaloptions: ApiCallOptions

    Returns Promise<GetDataProductChangelogsHttpResponse>

    GetDataProductChangelogsHttpError