79608534

Date: 2025-05-06 10:57:14
Score: 0.5
Natty:
Report link

I encountered with this error when the path parameter I used was an unencoded value.

Example API GW path:

/accounts/{accountId}/files/{fileId}

In case the fileId contains slash character (eg. file/123) the error occurs.

Fix:

URL-encode the path parameters when calling the API:

/accounts/123/files/file%2F123
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: ToC