POST api/Paramdham/InsertCustomer

Request Information

URI Parameters

None.

Body Parameters

PCustomer
NameDescriptionTypeAdditional information
ID

integer

None.

FirstName

string

None.

MiddleName

string

None.

LastName

string

None.

Email

string

None.

MobileNo

string

None.

Address

string

None.

City

string

None.

State

string

None.

ISActive

integer

None.

LastLogin

date

None.

ISCurrentlyLogin

integer

None.

MobileNoVerified

integer

None.

GeneratedOTP

string

None.

CreatedOn

date

None.

CreatedBy

integer

None.

ModifiedOn

date

None.

ModifiedBy

integer

None.

Password

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "FirstName": "sample string 2",
  "MiddleName": "sample string 3",
  "LastName": "sample string 4",
  "Email": "sample string 5",
  "MobileNo": "sample string 6",
  "Address": "sample string 7",
  "City": "sample string 8",
  "State": "sample string 9",
  "ISActive": 10,
  "LastLogin": "2026-02-01T14:56:39.14284+01:00",
  "ISCurrentlyLogin": 12,
  "MobileNoVerified": 13,
  "GeneratedOTP": "sample string 14",
  "CreatedOn": "2026-02-01T14:56:39.14284+01:00",
  "CreatedBy": 16,
  "ModifiedOn": "2026-02-01T14:56:39.14284+01:00",
  "ModifiedBy": 18,
  "Password": "sample string 19"
}

application/xml, text/xml

Sample:
<PCustomer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/navtezcms.BO">
  <Address>sample string 7</Address>
  <City>sample string 8</City>
  <CreatedBy>16</CreatedBy>
  <CreatedOn>2026-02-01T14:56:39.14284+01:00</CreatedOn>
  <Email>sample string 5</Email>
  <FirstName>sample string 2</FirstName>
  <GeneratedOTP>sample string 14</GeneratedOTP>
  <ID>1</ID>
  <ISActive>10</ISActive>
  <ISCurrentlyLogin>12</ISCurrentlyLogin>
  <LastLogin>2026-02-01T14:56:39.14284+01:00</LastLogin>
  <LastName>sample string 4</LastName>
  <MiddleName>sample string 3</MiddleName>
  <MobileNo>sample string 6</MobileNo>
  <MobileNoVerified>13</MobileNoVerified>
  <ModifiedBy>18</ModifiedBy>
  <ModifiedOn>2026-02-01T14:56:39.14284+01:00</ModifiedOn>
  <Password>sample string 19</Password>
  <State>sample string 9</State>
</PCustomer>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

response
NameDescriptionTypeAdditional information
payload

string

None.

TotalRecords

integer

None.

LastCounter

integer

None.

success

boolean

None.

messages

Collection of string

None.

Response Formats

application/json, text/json

Sample:
{
  "payload": "sample string 1",
  "TotalRecords": 2,
  "LastCounter": 3,
  "success": true,
  "messages": [
    "sample string 1",
    "sample string 2"
  ]
}

application/xml, text/xml

Sample:
<response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/navtezcms.api">
  <LastCounter>3</LastCounter>
  <TotalRecords>2</TotalRecords>
  <messages xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </messages>
  <payload>sample string 1</payload>
  <success>true</success>
</response>