Hello,
I am trying to consume de endpoint /vpc/v1/reportManagement/transactionHistory/get using Message Level Encryption (MLE). But i am facing some problems.
The response server from my request is giving me the bad request:
{
"errorResponse": {
"status": 400,
"message": "Bad Request : Message Validation Failed",
"details": [
{
"message": " should be valid"
}
]
}
}
What am I doing wrong on my request? Is that some wrong field on the body request or something similar?
Below I show my postman configuration to give more informations:
(ps: node server is running the encrypt mechanism as showed on this tutorial).
Encryption - Headers
Encryption - Body
Encryption - Pre-request Script
Request - Auth
Request - Headers
Request - Body
Decryption - Body
Thanks!