Web Service:PR-WS-5: Difference between revisions
From IHRIS Wiki
No edit summary |
No edit summary |
||
Line 13: | Line 13: | ||
*${csr} The CSR number. Optional. | *${csr} The CSR number. Optional. | ||
*${respformat} Describes response format. Optional. Default is 'http', can also be 'json.' | *${respformat} Describes response format. Optional. Default is 'http', can also be 'json.' | ||
|example=? | |example=?firstname=Bill&surname=Smith&nationality=RW&nid=12312342 | ||
|response=HTTP 200 - OK | |response=HTTP 200 - OK | ||
*If ${repsformat} is 'http' the HTTP response body will contain the epid as plain text. | *If ${repsformat} is 'http' the HTTP response body will contain the epid as plain text of the newly created provider. | ||
*If ${respformat} is 'json' it will contain a JSON object with the | *If ${respformat} is 'json' it will contain a JSON object with the field 'epid' of the newly created provider as well as the URL to access the provider details from [[Web_Service:PS-WS-5]]. Example: | ||
{ | { | ||
"epid": 211312 | "epid": 211312, | ||
actions: { | |||
"providerDetails": 'http:://rhea.ihris.org/providerDetails/byid?id_num=211312', | |||
"editProvider": 'http:://rhea.ihris.org/editProvider/epid=211312', | |||
"addPost": 'http:://rhea.ihris.org/addPost/epid=211312', | |||
"getPosts": 'http:://rhea.ihris.org/getPosts/epid=211312', | |||
} | |||
} | } | ||
|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 12:44, 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.ihris.org/providerDetails/byid?id_num=211312', "editProvider": 'http:://rhea.ihris.org/editProvider/epid=211312', "addPost": 'http:://rhea.ihris.org/addPost/epid=211312', "getPosts": 'http:://rhea.ihris.org/getPosts/epid=211312', }} |
GET Error |
|
GET Example | /ws/rest/v2/addProvider/?firstname=Bill&surname=Smith&nationality=RW&nid=12312342 |
Other Resources: Use Case:PR-WS-5