Building request

Request URL is build as a string in code section, just leave out the base IFS URL.

For example request

https://z103labb004.novacura.com/main/ifsapplications/projection/v1/RequestForPurchaseQuotation.svc/InquiryOrderSet(InquiryNo=7)/InquiryLinePartOrderLines(InquiryNo=7, LineNo=1)

would be constructed...

string url = "/main/ifsapplications/projection/v1/RequestForPurchaseQuotation.svc"
	+"/InquiryOrderSet"
	+"(InquiryNo="
	+flowVariables.InquiryNo
	+")"
	+"/InquiryLinePartOrderLines(InquiryNo="
	+flowVariables.InquiryNo
	+",LineNo="
	+flowVariables.InquiryLine
	+")";

Flow variables can be added by prefixing them with flowVariables.

Last updated