POST api/BusinessBeatPlan/AutoAddCustomer

Request Information

URI Parameters

None.

Body Parameters

AutoAddCustomer
NameDescriptionTypeAdditional information
BusinessId

integer

None.

LoginUserId

integer

None.

CustomerId

integer

None.

AssignedToID

integer

None.

PlanName

string

None.

StartDate

string

None.

StartTime

string

None.

RepeatType

string

None.

RepeatCount

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "BusinessId": 1,
  "LoginUserId": 2,
  "CustomerId": 3,
  "AssignedToID": 4,
  "PlanName": "sample string 5",
  "StartDate": "sample string 6",
  "StartTime": "sample string 7",
  "RepeatType": "sample string 8",
  "RepeatCount": 9
}

application/xml, text/xml

Sample:
<AutoAddCustomer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BOPWAAPI.Model">
  <AssignedToID>4</AssignedToID>
  <BusinessId>1</BusinessId>
  <CustomerId>3</CustomerId>
  <LoginUserId>2</LoginUserId>
  <PlanName>sample string 5</PlanName>
  <RepeatCount>9</RepeatCount>
  <RepeatType>sample string 8</RepeatType>
  <StartDate>sample string 6</StartDate>
  <StartTime>sample string 7</StartTime>
</AutoAddCustomer>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

VCAPIResponse
NameDescriptionTypeAdditional information
Version

string

None.

dateTime

string

None.

StatusCode

integer

None.

ErrorMessage

string

None.

Result

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Version": "1.0.0",
  "dateTime": "2024/09/19 17:16:54",
  "StatusCode": 1,
  "ErrorMessage": "sample string 2",
  "Result": {}
}

application/xml, text/xml

Sample:
<VCAPIResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BOPWAAPI.Model">
  <ErrorMessage>sample string 2</ErrorMessage>
  <Result />
  <StatusCode>1</StatusCode>
</VCAPIResponse>