Web Service:PR-WS-5: Difference between revisions
From IHRIS Wiki
No edit summary |
No edit summary |
||
Line 18: | Line 18: | ||
*If ${respformat} is 'json' it will contain a JSON object with the field 'epid' of the newly created provider as well as the URLs to access for further web-service actions to perform on the provider. | *If ${respformat} is 'json' it will contain a JSON object with the field 'epid' of the newly created provider as well as the URLs to access for further web-service actions to perform on the provider. | ||
{ | { | ||
epid: 211312, | |||
actions: { | actions: { | ||
providerDetails: 'http://rhea-pr.ihris.org/webservices/providerDetails?epid=211312', | |||
editProvider: 'http://rhea-pr.ihris.org/webservices/editProvider?epid=211312', | |||
addPost: 'http://rhea-pr.ihris.org/webservices/addPost?epid=211312', | |||
postDetails: 'http://rhea-pr.ihris.org/webservices/postDetails?epid=211312', | |||
viewProvider: 'http://rhea-pr.ihris.org/providerregistry/view?id=person|23123' | |||
} | } | ||
} | } |
Revision as of 19:11, 30 October 2012
Web Service: PR-WS-5 Add a Provider
Add Provider Details
URL | /ws/rest/v2/addProvider |
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/providerDetails?epid=211312', editProvider: 'http://rhea-pr.ihris.org/webservices/editProvider?epid=211312', addPost: 'http://rhea-pr.ihris.org/webservices/addPost?epid=211312', postDetails: 'http://rhea-pr.ihris.org/webservices/postDetails?epid=211312', viewProvider: 'http://rhea-pr.ihris.org/providerregistry/view?id=person%7C23123' }} |
GET Error |
|
GET Example | /ws/rest/v2/addProvider/?firstname=Bill&surname=Smith&nationality=RW&nid=12312342 |
Other Resources: Use Case:PR-WS-5