Using Postman, or the C# program I have, I am trying to send a date to CRM. The date being passed is "2019-09-15", but when it shows up in CRM it is "2019-09-14".
In Postman, I am sending this in the PATCH
body:
{
"org_paymentreceived": "2019-09-15"
}
In the C# program, I am sending this:
{
"org_paymentreceived": Convert.ToDateTime(payment)
}
In both cases, it is quite clear 2019-09-15
is being passed, but still shows up as 2019-09-14
in CRM.