Hello Team,
We have two endpoints,
/accounts/{accountId}/statements –> Gives list of statements.
accounts/{accountId}/statements/{statementId} –> Get statement details.
We are doing some headless validations and calling the endpoint for statement details as below,
accounts/{accountId}/statements/ {few spaces here}, and spaces are encoding by browser and coming as
accounts/{accountId}/statements/%20%20 .
and Api is considering something value was present and null check validation was skipping. How to do null check validation against statementId?
Thanks in Advance.