POST api/CRUD_API2/InsertCustomerWallet

Request Information

URI Parameters

None.

Body Parameters

CustomerWalletRequest
NameDescriptionTypeAdditional information
CDID

integer

None.

Company_Name

string

None.

Wallet_Type

string

None.

Username

string

None.

Password

string

None.

Roles

string

None.

RoleName

string

None.

Request Formats

application/json, text/json

Sample:
{
  "CDID": 1,
  "Company_Name": "sample string 2",
  "Wallet_Type": "sample string 3",
  "Username": "sample string 4",
  "Password": "sample string 5",
  "Roles": "sample string 6",
  "RoleName": "sample string 7"
}

application/xml, text/xml

Sample:
<PKController.CustomerWalletRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CRUD_API2.Controllers">
  <CDID>1</CDID>
  <Company_Name>sample string 2</Company_Name>
  <Password>sample string 5</Password>
  <RoleName>sample string 7</RoleName>
  <Roles>sample string 6</Roles>
  <Username>sample string 4</Username>
  <Wallet_Type>sample string 3</Wallet_Type>
</PKController.CustomerWalletRequest>

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 'CustomerWalletRequest'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.