POST api/v1/patient/funderconfigurations/specificrules
Update all specific rules in the system
Request Information
URI Parameters
None.
Body Parameters
Collection of Com.Healthbridge.Hhas.Patient.Interface.ValueObjects.FunderSpecificRuleVoName | Description | Type | Additional information |
---|---|---|---|
Code | string |
None. |
|
Description | string |
None. |
|
ZeroMedicine | boolean |
None. |
|
ZeroConsumable | boolean |
None. |
Request Formats
application/json, text/json
Sample:
[ { "Code": "sample string 1", "Description": "sample string 2", "ZeroMedicine": true, "ZeroConsumable": true }, { "Code": "sample string 1", "Description": "sample string 2", "ZeroMedicine": true, "ZeroConsumable": true } ]
application/xml, text/xml
Sample:
<ArrayOfFunderSpecificRule xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://mpsapi.healthbridge.com/clinical/patient/v1/funderconfiguration/"> <FunderSpecificRule> <Code>sample string 1</Code> <Description>sample string 2</Description> <ZeroConsumable>true</ZeroConsumable> <ZeroMedicine>true</ZeroMedicine> </FunderSpecificRule> <FunderSpecificRule> <Code>sample string 1</Code> <Description>sample string 2</Description> <ZeroConsumable>true</ZeroConsumable> <ZeroMedicine>true</ZeroMedicine> </FunderSpecificRule> </ArrayOfFunderSpecificRule>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects.RestApiResultOfSystem.BooleanName | Description | Type | Additional information |
---|---|---|---|
Sucess | boolean |
None. |
|
ResponseCode | integer |
None. |
|
ResponseMessage | string |
None. |
|
Data | boolean |
None. |
|
Links | Collection of Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects.RestApiLink |
None. |
Response Formats
application/json, text/json
Sample:
{ "Sucess": true, "ResponseCode": 2, "ResponseMessage": "sample string 3", "Data": true, "Links": [ { "Rel": "sample string 1", "HRef": "sample string 2" }, { "Rel": "sample string 1", "HRef": "sample string 2" } ] }
application/xml, text/xml
Sample:
<RestApiResultOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects"> <Data>true</Data> <Links> <RestApiLink> <HRef>sample string 2</HRef> <Rel>sample string 1</Rel> </RestApiLink> <RestApiLink> <HRef>sample string 2</HRef> <Rel>sample string 1</Rel> </RestApiLink> </Links> <ResponseCode>2</ResponseCode> <ResponseMessage>sample string 3</ResponseMessage> <Sucess>true</Sucess> </RestApiResultOfboolean>