How to define multiple endpoints in the settings of robot
My expectation will be like this. Defining two urls in the settings
***Settings***
Library REST ${API_URL_1} URL_1
Library REST ${API_URL_2} URL_2
and it will called in the testcases as
*** Test Cases ***
Scenario-1
GET ${URL_1}/getsomething
get the response to a variable (say: data)
POST ${URL_2}/dosomething ${data}
will that possible using restinstace library?