Error: There was a failure executing the send pipeline: "abc" Source: "JSON encoder" Send Port: "xyz" URI: "" Reason: Input string was not in a correct format.
Error: There was a failure executing the send pipeline: "abc" Source: "JSON encoder" Send Port: "xyz" URI: "" Reason: Input string was not in a correct format.
Issue:
While attempting to make a POST API call through an orchestration, I encountered the following error:
There was a failure executing the send pipeline: "abc" Source: "JSON encoder" Send Port: "xyz" URI: "" Reason: Input string was not in a correct format.
Root Cause:
The error occurred due to an issue with the input payload. The field's data type was specified as xs:unsignedShort, but I mistakenly provided the input value "DC_NUMBER," which is an incorrect format. However, after correcting the input value to a numerical format like "00015925," the issue was resolved successfully.
Comments
Post a Comment