POST api/Providers/SurveyNetwork
Request Information
URI Parameters
None.
Body Parameters
ServiceProviderNetworkRequestName | Description | Type | Additional information |
---|---|---|---|
NPI | string |
None. |
|
ANI | decimal number |
None. |
|
DNIS | decimal number |
None. |
|
Question1 | decimal number |
None. |
|
Question2 | decimal number |
None. |
|
Question3 | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{ "NPI": "sample string 1", "ANI": 2.0, "DNIS": 3.0, "Question1": 4.0, "Question2": 5.0, "Question3": 6.0 }
application/xml, text/xml
Sample:
<ServiceProviderNetworkRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ViaWS.Models"> <ANI>2</ANI> <DNIS>3</DNIS> <NPI>sample string 1</NPI> <Question1>4</Question1> <Question2>5</Question2> <Question3>6</Question3> </ServiceProviderNetworkRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
SurveyProviderNetworkGetResponseName | Description | Type | Additional information |
---|---|---|---|
DBResult | integer |
None. |
|
result | integer |
None. |
|
message | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "DBResult": 1, "result": 2, "message": "sample string 3" }
application/xml, text/xml
Sample:
<SurveyProviderNetworkGetResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ViaWS.Models"> <Message>sample string 3</Message> <Result>2</Result> <DBResult>1</DBResult> </SurveyProviderNetworkGetResponse>