How to get Created Time of a Record in Client Script

How to get Created Time of a Record in Client Script




In the record details I can see created time under the Created By 

I am trying to get the Created Time in the API Request
var
id = $Page.record_id;
var res = ZDK.Apps.CRM.Price_List_Item.fetchById(id);
log(res.Created_Time);


In the JSON Response I cant see Created time how can I get the Created_Time of the record from API?

   "_Owner_Lookup_Id":"405008200001051xxxx",
   "_Created_By_Lookup_Id":"405008200001051xxxx",
   "_Modified_By_Lookup_Id":"40500820000009xxxx",
   "_Deal_Lookup_Id":"40500820000106xxxx",
   "_Account_Lookup_Id":"4050082000010xxxxx",
   "_Price_Request_Lookup_Id":null,
   "_keyModified":{
      
   },
   "_Name":"DR421",
   "_Owner":null,
   "_Created_By":null,
   "_Modified_By":null,
   "_Last_Activity_Time":"2025-03-06T15:13:25+03:00",
   "_Currency":"SAR",
   "_Exchange_Rate":1,
   "_Tag":[
      
   ],
   "_Unsubscribed_Mode":null,
   "_Unsubscribed_Time":null,
   "_Record_Image":null,
   "_Price_Sheet_Number":"PS-00659",
   "_Locked__s":true,
   "_Subform_1":[
    
   ],
   "_Total_Price_Selling_price":49120,
   "_Total_tax_amount":7368,
   "_Grand_Total_Including_Tax":56488,
   "_Approval_Status":"Approved By S.Manager",
   "_Profit":2328,
   "_Deal":null,
   "_Account":null,
    "_id":"4050082000013837001"

There's no created time in here, but I can see the created time under Created By in the record details how to retrieve that?