POST api/V1/Customer/AddCustomer

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
customer
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "CustomerId": 1,
  "CompanyId": 2,
  "Name": "sample string 3",
  "GSTNumber": "sample string 4",
  "ContactNumber": "sample string 5",
  "Address": "sample string 6",
  "StateId": 1,
  "CityId": 1,
  "PinCode": "sample string 7",
  "CompanyName": "sample string 8",
  "EmailId": "sample string 9",
  "UserId": 10,
  "IsDeleted": true,
  "AppSource": 12
}

application/xml, text/xml

Sample:
<CompanyCustomer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TPNagar.Contract.Customer">
  <Address>sample string 6</Address>
  <AppSource>12</AppSource>
  <CityId>1</CityId>
  <CompanyId>2</CompanyId>
  <CompanyName>sample string 8</CompanyName>
  <ContactNumber>sample string 5</ContactNumber>
  <CustomerId>1</CustomerId>
  <EmailId>sample string 9</EmailId>
  <GSTNumber>sample string 4</GSTNumber>
  <IsDeleted>true</IsDeleted>
  <Name>sample string 3</Name>
  <PinCode>sample string 7</PinCode>
  <StateId>1</StateId>
  <UserId>10</UserId>
</CompanyCustomer>

application/x-www-form-urlencoded

Sample:

Sample not available.