GET api/Master/GetAllCustomers

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of 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.

Response 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:07:34.4437923+05:30",
    "CreatedBy": 7,
    "UpdatedOn": "2025-12-06T10:07:34.4437923+05:30",
    "UpdatedBy": 8
  },
  {
    "CustomerId": 1,
    "CustomerName": "sample string 2",
    "CustomerMobile": "sample string 3",
    "Location": "sample string 4",
    "IsActive": true,
    "UserId": 6,
    "CreatedOn": "2025-12-06T10:07:34.4437923+05:30",
    "CreatedBy": 7,
    "UpdatedOn": "2025-12-06T10:07:34.4437923+05:30",
    "UpdatedBy": 8
  }
]

application/xml, text/xml

Sample:
<ArrayOfCustomerFlat xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AGS.Entities.FlatModels">
  <CustomerFlat>
    <CreatedBy>7</CreatedBy>
    <CreatedOn>2025-12-06T10:07:34.4437923+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:07:34.4437923+05:30</UpdatedOn>
    <UserId>6</UserId>
  </CustomerFlat>
  <CustomerFlat>
    <CreatedBy>7</CreatedBy>
    <CreatedOn>2025-12-06T10:07:34.4437923+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:07:34.4437923+05:30</UpdatedOn>
    <UserId>6</UserId>
  </CustomerFlat>
</ArrayOfCustomerFlat>