POST api/Contact/ContactAllergyDelete
Request Information
URI Parameters
None.
Body Parameters
ContactAllergyResult| Name | Description | Type | Additional information |
|---|---|---|---|
| AllergyCode | string |
None. |
|
| Comment | string |
None. |
|
| SeqNum | integer |
None. |
|
| ContactNum | integer |
None. |
|
| SessionNum | integer |
None. |
|
| SessionPassword | Collection of byte |
None. |
|
| ApplicationCode | string |
None. |
|
| StagesURL | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"AllergyCode": "sample string 1",
"Comment": "sample string 2",
"SeqNum": 1,
"ContactNum": 1,
"SessionNum": 3,
"SessionPassword": "QEA=",
"ApplicationCode": "sample string 4",
"StagesURL": "sample string 5"
}
application/xml, text/xml
Sample:
<ContactAllergyResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RapidAPI.Models"> <StagesURL>sample string 5</StagesURL> <ApplicationCode>sample string 4</ApplicationCode> <SessionNum>3</SessionNum> <SessionPassword>QEA=</SessionPassword> <ContactNum>1</ContactNum> <AllergyCode>sample string 1</AllergyCode> <Comment>sample string 2</Comment> <SeqNum>1</SeqNum> </ContactAllergyResult>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ContactAllergyDeleteQueryResult| Name | Description | Type | Additional information |
|---|---|---|---|
| ExcludeColumnList | Collection of string |
None. |
|
| ResultSet | Collection of ContactAllergyDeleteResult |
None. |
|
| Success | boolean |
None. |
|
| UserErrorMessage | string |
None. |
|
| ErrorTypeNum | integer |
None. |
|
| SqlConnectionLost | boolean |
None. |
|
| ClientVersion | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ExcludeColumnList": [
"sample string 1",
"sample string 2"
],
"ResultSet": [
{
"AllergyCode": "sample string 1",
"AllergyDescription": "sample string 2",
"Comment": "sample string 3",
"ContactNum": 1,
"SeqNum": 1
},
{
"AllergyCode": "sample string 1",
"AllergyDescription": "sample string 2",
"Comment": "sample string 3",
"ContactNum": 1,
"SeqNum": 1
}
],
"Success": true,
"UserErrorMessage": "sample string 2",
"ErrorTypeNum": 3,
"SqlConnectionLost": true,
"ClientVersion": "sample string 5"
}
application/xml, text/xml
Sample:
<ContactAllergyDeleteQueryResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Stages">
<ClientVersion>sample string 5</ClientVersion>
<ErrorTypeNum>3</ErrorTypeNum>
<SqlConnectionLost>true</SqlConnectionLost>
<Success>true</Success>
<UserErrorMessage>sample string 2</UserErrorMessage>
<ExcludeColumnList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</ExcludeColumnList>
<ResultSet>
<ContactAllergyDeleteResult>
<AllergyCode>sample string 1</AllergyCode>
<AllergyDescription>sample string 2</AllergyDescription>
<Comment>sample string 3</Comment>
<ContactNum>1</ContactNum>
<SeqNum>1</SeqNum>
</ContactAllergyDeleteResult>
<ContactAllergyDeleteResult>
<AllergyCode>sample string 1</AllergyCode>
<AllergyDescription>sample string 2</AllergyDescription>
<Comment>sample string 3</Comment>
<ContactNum>1</ContactNum>
<SeqNum>1</SeqNum>
</ContactAllergyDeleteResult>
</ResultSet>
</ContactAllergyDeleteQueryResult>