We have 3 parameters that we need to send through the API. One of them is the "apikey" which is a code already provided, the other one is "utcTimeStamp" and the last one is the "signature".
The signature consists of the result of encrypting with a SHA256 algorithm the following parameters:
apikey,privatekey,utcTimeStamp
(privatekey is a code that was also provided to us previously).
Including the comma between each parameter.
How could we generate this signature with these characteristics and return it as a parameter?
More details in the attached image.