POST API/SalesPersonAPI/PostSalesPersonCustomers

Request Information

URI Parameters

None.

Body Parameters

PostSalesPersonCustomerRequestModel
NameDescriptionTypeAdditional 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:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'PostSalesPersonCustomerRequestModel'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.