POST api/Master/SaveCustomer

Request Information

URI Parameters

None.

Body Parameters

CustomerFlat
NameDescriptionTypeAdditional information
CustomerId

integer

None.

CustomerName

string

None.

CustomerMobile

string

None.

Location

string

None.

IsActive

boolean

None.

UserId

integer

None.

CreatedOn

date

None.

CreatedBy

integer

None.

UpdatedOn

date

None.

UpdatedBy

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "CustomerId": 1,
  "CustomerName": "sample string 2",
  "CustomerMobile": "sample string 3",
  "Location": "sample string 4",
  "IsActive": true,
  "UserId": 6,
  "CreatedOn": "2025-12-06T10:06:16.8529054+05:30",
  "CreatedBy": 7,
  "UpdatedOn": "2025-12-06T10:06:16.8529054+05:30",
  "UpdatedBy": 8
}

application/xml, text/xml

Sample:
<CustomerFlat xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AGS.Entities.FlatModels">
  <CreatedBy>7</CreatedBy>
  <CreatedOn>2025-12-06T10:06:16.8529054+05:30</CreatedOn>
  <CustomerId>1</CustomerId>
  <CustomerMobile>sample string 3</CustomerMobile>
  <CustomerName>sample string 2</CustomerName>
  <IsActive>true</IsActive>
  <Location>sample string 4</Location>
  <UpdatedBy>8</UpdatedBy>
  <UpdatedOn>2025-12-06T10:06:16.8529054+05:30</UpdatedOn>
  <UserId>6</UserId>
</CustomerFlat>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>