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

From IHRIS Wiki
No edit summary
No edit summary
Line 11: Line 11:
*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:
{  
{  
   0 : {
   98798798 : {
    facility: 'XXX District Hospital',
    foasid: '123213', 
    type:  'PPS',
    category: 'NURSE',
     actions: {
     actions: {
         'editPost': http://blahblah/,
         'editPost': http://rhea-pr.ihris.org/webservices/editPost?id=98798798',
          'disablePost': http://blahblah/
        'postDetails: http://rhea-pr.ihris.org/webservices/postDetails?id=98798798'
     }
     }
   },
   },
   1 : {
   9878799 : {
    facility: 'YYY District Hospital',
      actions: {
    code: '12345', 
         'editPost': http://rhea-pr.ihris.org/webservices/editPost?id=98798799',
    type:  'PPS',
        'postDetails: http://rhea-pr.ihris.org/webservices/postDetails?id=98798799'
    category: 'NURSE',
    actions: {
         'editPost': http://blahblah/,
          'disablePost': http://blahblah/
     }
     }
   },
   }
}
}
  |error=*HTTP 500 - Server Error - If the server encountered an error.
  |error=*HTTP 500 - Server Error - If the server encountered an error.

Revision as of 15:17, 30 October 2012

Web Service: PR-WS-4 Get Provider Posting Detail


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'
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:

{

 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