Evaluations API - Release date coming out as change date

This is the class we are using in the code to map the evaluations :

PureCloudPlatform.Client.V2.Model.AnalyticsEvaluation

    //
    // Summary:
    //     Specifies when an evaluation occurred. Date time is represented as an ISO-8601
    //     string. For example: yyyy-MM-ddTHH:mm:ss[.mmm]Z
    //
    // Value:
    //     Specifies when an evaluation occurred. Date time is represented as an ISO-8601
    //     string. For example: yyyy-MM-ddTHH:mm:ss[.mmm]Z
    [DataMember(Name = "eventTime", EmitDefaultValue = false)]
    public DateTime? EventTime { get; set; }

We are running a PostAnalyticsConversationsDetailsQuery to retrieve conversations that have an evaluation.

When the evaluations come back the eventime in the deserialized object seems to be mapped to changedDate in the api rather than "releaseDate"

I checked the api :

and the following dates in that evaluation are :

"releaseDate" : "2023-04-14T16:23:52.237Z",
"assignedDate": "2023-04-14T16:23:52.098Z",
"changedDate": "2023-04-17T08:01:13.240Z",

Could anyone let me know if they experience the same issue or if there is any way I could fix?

If you believe the data provided by the API is incorrect, please open a case with Genesys Cloud Care to investigate. We do not have access to your org's data via the forum.

Note that the SDKs are a 1:1 mapping to the REST API definition. There is no case in which the SDK will read one property and assign the value to a different property in the model.

This topic was automatically closed 31 days after the last reply. New replies are no longer allowed.