POST api/v1/ReciveVisitPlan
Request Information
URI Parameters
None.
Body Parameters
ReciveVisitPlan| Name | Description | Type | Additional information |
|---|---|---|---|
| username | string |
None. |
|
| d | string |
None. |
|
| m | string |
None. |
|
| y | string |
None. |
|
| station | string |
None. |
|
| area | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"username": "sample string 1",
"d": "sample string 2",
"m": "sample string 3",
"y": "sample string 4",
"station": "sample string 5",
"area": "sample string 6"
}
application/xml, text/xml
Sample:
<ReciveVisitPlan xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AppBridge"> <area>sample string 6</area> <d>sample string 2</d> <m>sample string 3</m> <station>sample string 5</station> <username>sample string 1</username> <y>sample string 4</y> </ReciveVisitPlan>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
StatusResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| status | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"status": "sample string 1"
}
application/xml, text/xml
Sample:
<StatusResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AppBridge"> <status>sample string 1</status> </StatusResponse>