POST API/SalesPersonAPI/PostSalesPersonCustomers
Request Information
URI Parameters
None.
Body Parameters
PostSalesPersonCustomerRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| LoginId | string |
None. |
|
| CustomerList | Collection of CustomersIdsModel |
None. |
Request Formats
application/json, text/json
Sample:
{
"LoginId": "sample string 1",
"CustomerList": [
{
"CustomerId": "sample string 1"
},
{
"CustomerId": "sample string 1"
}
]
}
application/xml, text/xml
Sample:
<PostSalesPersonCustomerRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UpTracModels">
<CustomerList>
<CustomersIdsModel>
<CustomerId>sample string 1</CustomerId>
</CustomersIdsModel>
<CustomersIdsModel>
<CustomerId>sample string 1</CustomerId>
</CustomersIdsModel>
</CustomerList>
<LoginId>sample string 1</LoginId>
</PostSalesPersonCustomerRequestModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.