Web Service:PR-WS-3: Difference between revisions

From IHRIS Wiki
No edit summary
No edit summary
Line 22: Line 22:
   nid:  "333",
   nid:  "333",
   actions: {
   actions: {
     'details': 'http://rhea.ihris.org/providerDetails?epid=123142',
     'providerDetails': 'http://rhea.ihris.org/providerDetails?epid=123142',
     'edit': 'http://rhea.ihris.org/editProvider?epid=123142',
     'editProvider': 'http://rhea.ihris.org/editProvider?epid=123142',
     'addPost': 'http://rhea.ihris.org/addPost?epid=123142',
     'addPost': 'http://rhea.ihris.org/addPost?epid=123142',
   }
   }

Revision as of 12:42, 30 October 2012

Web Service: PR-WS-3 Get Provider Detail


Fetches details of a provider by their EPID or other identification type.

URL /ws/rest/v1/providerDetails
GET Parameters This contains the followng parameters to identify the provider whose details we shall return:

$epid. The providers EPID. Required.

  • ${format}The response format. One of 'json' or 'hl7'. Defaults to 'json',
GET Response
  • HTTP 200 - OK
  • For HL7 See QueryProfessionalRSS.xml
  • For JSON we return an associative array containing the provider's details as well as URLs related to various actions to perform on the provider:

{

 firstname: "Bill",
 surname:  "Smith",
 cadre: "Nurse",
 email: "bsmith@example.org",
 passport: "12312312",
 mutuelle: "123123444",
 csr:  "123123",
 nid:  "333",
 actions: {
   'providerDetails': 'http://rhea.ihris.org/providerDetails?epid=123142',
   'editProvider': 'http://rhea.ihris.org/editProvider?epid=123142',
   'addPost': 'http://rhea.ihris.org/addPost?epid=123142',
 }
}
GET Error
  • HTTP 500 - Server Error - If the server encountered an error.
  • HTTP 400 - Bad Request - If the parameters are malformed.

Other Resources: Use Case:PR-WS-3