Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Available RESTful web services for the Location Resource supported by the API

GET Requests

urldescription
/ws/fhir/Location/{id}

Above request will fetch the Location for the given unique uuid. Here id represents, the logical resource id associated with the resource.

/ws/fhir/Location?_id={id}

Above request will fetch all the Locations using the given uuid value. This will give a List of Locations as the response.Here _id parameter represents, the logical resource id associated with the resource.

/ws/fhir/Location?status={value}

Above request will fetch all the Locations using the given status value. This will give a List of Locations as the response. Here status parameter represents, locations with a specific kind of status.

/ws/fhir/Location?name={value}

Above request will fetch all the Locations using the given name. This will give a List of Locations as the response. Here name parameter represents, the name of the location. 

POST Requests