The system analyzes the REST endpoint URL that you entered and suggests the elements of the URL that represent resource path names and query string parameter names on the Define Parameters screen of the New REST Integration wizard. You can revise the elements on this screen.
For example, if you entered a URL in the format https//sampleURL.com/res_path1/res_path2?URLkey={URLkey}
, the res_path1
and res_path2
elements appear in the Resource Path Name column and the URLkey
element appears in the Query String Parameter Name column; {URLkey}
represents the value of URLkey
that is substituted at run time.
In the above example, if you mark res_path2
as a parameter, the Endpoint URL changes to https//sampleURL.com/res_path1/{res_path2}?URLkey={yourURLkey}
, with res_path2
in curly braces. The res_path2
element is now considered part of the request. The system generates a property as part of the request data model and substitutes the property's value for the value of res_path2
at run time.
Note: The system considers query string parameters as part of the request and creates properties for them as well.
Previous: Creating REST integration |