PUT api/my/basura/customers/mobile/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

CustomersUpdateDTO
NameDescriptionTypeAdditional information
image

string

None.

nickname

string

None.

firstname

string

None.

lastname

string

None.

email

string

None.

contactnumber

string

None.

type

string

None.

bxcardno

string

None.

bxcardimagefront

string

None.

bxcardimageback

string

None.

Request Formats

application/json, text/json

Sample:
{
  "image": "sample string 1",
  "nickname": "sample string 2",
  "firstname": "sample string 3",
  "lastname": "sample string 4",
  "email": "sample string 5",
  "contactnumber": "sample string 6",
  "type": "sample string 7",
  "bxcardno": "sample string 8",
  "bxcardimagefront": "sample string 9",
  "bxcardimageback": "sample string 10"
}

application/xml, text/xml

Sample:
<CustomersUpdateDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models.DTO">
  <bxcardimageback>sample string 10</bxcardimageback>
  <bxcardimagefront>sample string 9</bxcardimagefront>
  <bxcardno>sample string 8</bxcardno>
  <contactnumber>sample string 6</contactnumber>
  <email>sample string 5</email>
  <firstname>sample string 3</firstname>
  <image>sample string 1</image>
  <lastname>sample string 4</lastname>
  <nickname>sample string 2</nickname>
  <type>sample string 7</type>
</CustomersUpdateDTO>

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

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.