Hi,
I'm using the order changes api...
GET {my customers url}/erp/api/integrator/erp/transport/orders/changes
I want to get all changes since yesturday so I try this..
/erp/api/integrator/erp/transport/orders/changes?since=2023-01-23T23:59:59.000Z
and I get this....
"The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. "
The docs seem to indicate a need to base64 encode it so I tried this base64 encoded (UTF-8)...
/erp/api/integrator/erp/transport/orders/changes?since=MjAyMy0wMS0yM1QyMzo1OTo1OS4wMDBa
and I get "Bad Data."
What format or encoding do I need to use to get the data?
Many thanks
Phil