
tendM.O00000VX1Io.20251014000610 (Partner) asked a question.
Hi everyone,
I'm looking for some guidance regarding a Generic REST AFX Connector configuration.
We have created a Generic REST AFX Connector called. The REST call executes successfully, and on the application server we can see that the API returns the expected JSON response:
{
"Success": true,
"ReasonCode": 0,
"ReasonText": "Success",
"Data": {
"UserName": "abcd_ef",
"Password": "xxxxxxx"
}
}
We are using JsonPath to extract the response values and pass them to a fulfillment workflow. However, although the response is returned successfully, none of the JsonPath values are being populated in the workflow.
We've verified that:
- The REST call completes successfully.
- The response in the server logs is valid JSON.
- The fulfillment workflow executes, but the expected response values are empty.
Has anyone experienced a similar issue with the Generic REST AFX Connector? Are there any known limitations or special configuration requirements for extracting nested JSON objects (for example,
$.Data.UserName
) and passing them to workflow variables?
Any suggestions or troubleshooting tips would be greatly appreciated.