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

From IHRIS Wiki
No edit summary
No edit summary
Line 1: Line 1:
{{WebServicePage|Get Provider Posting Detail
{{WebServicePage|Get Provider Postings
  |number=PR-WS-4
  |number=PR-WS-4
  |description=Fetches details of a provider's postings by their EPID.
  |description=Fetches details of a provider's postings by their EPID.
Line 13: Line 13:
*If the format='json' we return an array of associative arrays.  The associative arrays have keys for the post attribtues.  For example:
*If the format='json' we return an array of associative arrays.  The associative arrays have keys for the post attribtues.  For example:
{  
{  
   "total_size" : 2,
   total_size : 2,
   "start": 0,
   start: 0,
   providers: {
   posts: {
     98798798 : {
     98798798 : {
       actions: {
       actions: {

Revision as of 20:05, 30 October 2012

Web Service: PR-WS-4 Get Provider Postings


Fetches details of a provider's postings by their EPID.

URL /ws/rest/v2/providerPosts
GET Parameters This contains the following parameters to identify the provider whose details we shall return:

${epid} The provider's EPID

  • ${format}The response format. One of 'hl7' or 'json'
  • ${size} The maximum number number of EPIDs to return. Defaults to 50.
  • ${start} The starting offset for listing EPIDs. Defaults to 10.
GET Response
  • HTTP 200 - OK
  • If the format='hl7' .....
  • If the format='json' we return an array of associative arrays. The associative arrays have keys for the post attribtues. For example:

{

 total_size : 2,
 start: 0,
 posts: {
   98798798 : {
      actions: {
          'editPost': http://rhea-pr.ihris.org/webservices/editPost?id=98798798',
          'postDetails: http://rhea-pr.ihris.org/webservices/postDetails?id=98798798'
      }
   },
   9878799 : {
       actions: {
          'editPost': http://rhea-pr.ihris.org/webservices/editPost?id=98798799',
          'postDetails: http://rhea-pr.ihris.org/webservices/postDetails?id=98798799'
      }
   }
  }
}
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-4