Provider Registry Web Services: Difference between revisions
No edit summary |
No edit summary |
||
(4 intermediate revisions by the same user not shown) | |||
Line 4: | Line 4: | ||
{{:Web Service:PR-WS-2}} | {{:Web Service:PR-WS-2}} | ||
{{:Web Service:PR-WS-3}} | {{:Web Service:PR-WS-3}} | ||
{{:Web Service:PR-WS-4}} | |||
{{:Web Service:PR-WS-5}} | |||
{{:Web Service:PR-WS-6}} | |||
{{:Web Service:PR-WS-7}} | |||
{{:Web Service:PR-WS-8}} | |||
{{:Web Service:PR-WS-9}} |
Latest revision as of 19:19, 30 October 2012
These are web services cases for interacting with the provider registry. Please see the requirements and use cases
Web Service: PR-WS-1 Get Enterprise Professional ID
Fetches a HC Professional Enterprise ID for the professional specified by the professional ID parameter.
URL | /ws/rest/v1/lookupbyid/epid |
GET Parameters | This contains only 2 parameters to identify the professional to return ${id_type} and ${id_number}
Where ${id-type} is one of the following:
|
GET Response |
|
GET Error |
|
GET Example | /ws/rest/v1/lookupbyid/epid/?id_type=NID&id_number=1234567890 |
Other Resources: Use Case:PR-WS-1
Web Service: PR-WS-2 Query For Providers
Fetches a HC Professional Enterprise ID for the professional specified by the professional ID parameter.
URL | /ws/rest/v2/query/providers |
GET Parameters | The following query parameters are allowed:
|
GET Response | HTTP 200 - OK
The HTTP response body will contain a list of matching EIDSs as specified by the ${format} parameter:
{ providers: { 211312: { providerDetails : 'http://rhea-pr.ihris.org/webservices/details/provider?epid=211312', editProvider : 'http://rhea-pr.ihris.org/webservices/edit/provider?epid=211312', addPost : 'http://rhea-pr.ihris.org/webservices/add/post?epid=211312', queryPosts : 'http://rhea-pr.ihris.org/webservices/details/post?epid=211312', viewProvider : 'http://rhea-pr.ihris.org/providerregistry/view?id=person%7C23123123 }, 131241241: { providerDetails : 'http://rhea-pr.ihris.org/webservices/details/provider?epid=131241241', editProvider : 'http://rhea-pr.ihris.org/webservices/edit/provider?epid=131241241', addPost : 'http://rhea-pr.ihris.org/webservices/add/post?epid=131241241', queryPosts : 'http://rhea-pr.ihris.org/webservices/details/post?epid=131241241', viewProvider : 'http://rhea-pr.ihris.org/providerregistry/view?id=person%7C31234 }, }, total_size : 300, start: 10 }
|
GET Error |
|
GET Example | /ws/rest/v2/query/providers/?foasid=123&size=2&start=10 |
Notes | Need to good way for limiting response length. See A collection: the list of bugs in the Launchpad API |
Other Resources: Use Case:PR-WS-2
Web Service: PR-WS-3 Get Provider Detail
Fetches details of a provider by their EPID or other identification type.
URL | /ws/rest/v2/details/provider |
GET Parameters | This contains the followng parameters to identify the provider whose details we shall return:
$epid. The providers EPID. Required.
|
GET Response |
{ firstname: "Bill", surname: "Smith", cadre: "Nurse", email: "bsmith@example.org", passport: "12312312", mutuelle: "123123444", csr: "123123", nid: "333", actions: { providerDetails: 'http://rhea-pr.ihris.org/webservices/details/provider?epid=211312', editProvider: 'http://rhea-pr.ihris.org/webservices/edit/provider?epid=211312', addPost: 'http://rhea-pr.ihris.org/webservices/add/post?epid=211312', queryPosts: 'http://rhea-pr.ihris.org/webservices/details/post?id=211312', viewProvider: 'http://rhea-pr.ihris.org/providerregistry/view?id=person%7C23123' }} |
GET Error |
|
Other Resources: Use Case:PR-WS-3
Web Service: PR-WS-4 Query For Postings
Fetches details of a provider's postings by their EPID.
URL | /ws/rest/v2/query/posts |
GET Parameters | This contains the following parameters to identify the provider whose details we shall return. The values of epid, foasid and orgunit are "and"ed together:
|
GET Response |
{ total_size : 2, start: 0, posts: { 98798798 : { editPost: http://rhea-pr.ihris.org/webservices/edit/post?id=98798798', postDetails: http://rhea-pr.ihris.org/webservices/details/post?id=98798798' }, 9878799 : { editPost: http://rhea-pr.ihris.org/webservices/edit/post?id=98798799', postDetails: http://rhea-pr.ihris.org/webservices/details/post?id=98798799' } }} |
GET Error |
|
Other Resources: Use Case:PR-WS-4
Web Service: PR-WS-5 Add a Provider
Add Provider Details
URL | /ws/rest/v2/add/provider |
GET Parameters | The following webservice should accept the following parameters:
|
GET Response | HTTP 200 - OK
{ epid: 211312, actions: { providerDetails: 'http://rhea-pr.ihris.org/webservices/details/provider?epid=211312', editProvider: 'http://rhea-pr.ihris.org/webservices/edit/provider?epid=211312', addPost: 'http://rhea-pr.ihris.org/webservices/add/post?epid=211312', queryPosts: 'http://rhea-pr.ihris.org/webservices/details/post?id=211312', viewProvider: 'http://rhea-pr.ihris.org/providerregistry/view?id=person%7C23123' }} |
GET Error |
|
GET Example | /ws/rest/v2/add/provider/?firstname=Bill&surname=Smith&nationality=RW&nid=12312342 |
Other Resources: Use Case:PR-WS-5
Web Service: PR-WS-6 Edit a Provider
Edit Provider Details
URL | /ws/rest/v2/edit/provider |
GET Parameters | The following webservice should accept the following parameters:
|
GET Response | HTTP 200 - OK
further web-service actions to perform on the provider Example: { epid: 211312, actions: { providerDetails: 'http://rhea-pr.ihris.org/webservices/detials/provider/byid?id_num=211312', editProvider: 'http://rhea-pr.ihris.org/webservices/edit/provider?epid=211312', addPost: 'http://rhea-pr.ihris.org/webservices/add/post?epid=211312', queryPosts: 'http://rhea-pr.ihris.org/webservices/query/posts?epid=211312', viewProvider: 'http://rhea-pr.ihris.org/providerregistry/view?id=person%7C23123' }} |
GET Error |
|
GET Example | /ws/rest/v2/edit/provider/?provder=m®_body=2 |
Other Resources: Use Case:PR-WS-6
Web Service: PR-WS-7 Get Post Details
Show details of a provider's post
URL | /ws/rest/v2/details/post |
GET Parameters | The following query parameters are allowed:
|
GET Response | HTTP 200 - OK
Example: { type: 'PPS', #One of PPS or CHW category: 'NURSE', fosaid: '012321', orgunit: '197834', startdate: '1992-12-22' #year, month, day actions: { postDetails: 'http://rhea-pr.ihris.org/webservices/details/post?id=211312', editPost: 'http://rhea-pr.ihris.org/webservices/edit/post?id=211312' }} |
GET Error |
|
GET Example | /ws/rest/v2/details/post/?id=12312321312 |
Notes | Need to good way for limiting response length. See A collection: the list of bugs in the Launchpad API |
Other Resources: Use Case:PR-WS-7
Web Service: PR-WS-8 Add a Post
Add Post Details
URL | /ws/rest/v2/add/post |
GET Parameters | The following webservice should accept the following parameters:
|
GET Response | HTTP 200 - OK
{ id: 211312, actions: { editPost: 'http://rhea-pr.ihris.org/webservices/edit/post?id=992312', postDetails: 'http://rhea-pr.ihris.org/webservices/details/post?id=992312', viewPost: 'http://rhea-pr.ihris.org/providerregistry/post?id=post%7C992312', }} |
GET Error |
|
GET Example | /ws/rest/v2/add/post/?category=NURSE&type=PPS&fosaid=12312&orgunit=2133 |
Other Resources: Use Case:PR-WS-8
Web Service: PR-WS-9 Edit a Post
Edit details on existing post
URL | /ws/rest/v2/edit/post |
GET Parameters | The following webservice should accept the following parameters:
|
GET Response | HTTP 200 - OK
{ id: 211312, actions: { editPost: 'http://rhea-pr.ihris.org/webservices/edit/post?id=992312', postDetails: 'http://rhea-pr.ihris.org/webservices/details/post?id=992312', viewPost: 'http://rhea-pr.ihris.org/providerregistry/post?id=post%7C992312', }} |
GET Error |
|
GET Example | /ws/rest/v2/edit/post/?category=NURSE&type=PPS&fosaid=12312&orgunit=2133 |
Other Resources: Use Case:PR-WS-9