The URL defines where the client can access the desired resources - for example the Patient resource. Code Block |
---|
url='http://hapi.fhir.org/baseR4/Patient' |
Query String: For GET requests, the URL may also contain any necessary query parameters like the id of the patient you are searching for. When using net.http.get{} , the parameters argument takes in a table of key-value pairs and automatically formats the query string. The url can also be hardcoded to handle query parameters if desired. The ? indicates the end of the url and beginning of the parameters. Key-value pairs are separated by & . See URL Encoding for building query strings for request URLs. Code Block |
---|
http://hapi.fhir.org/baseR4/Patient?id=12324&name=Bruce |
|