PUT account/employeeProfileContact
Request Information
URI Parameters
None.
Body Parameters
employeeProfileContactPostModelName | Description | Type | Additional information |
---|---|---|---|
string |
Required Max length: 64 |
||
tel | string |
Required Max length: 10 Min length: 10 |
|
cityId | integer (Int32) |
Required |
|
townId | integer (Int32) |
Required |
|
address | string |
Max length: 256 |
Request Formats
application/json, text/json
Sample:
{ "email": "sample string 1", "tel": "sample string 2", "cityId": 1, "townId": 1, "address": "sample string 3" }
application/xml, text/xml
Sample:
<employeeProfileContactPostModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/api.Models"> <address>sample string 3</address> <cityId>1</cityId> <email>sample string 1</email> <tel>sample string 2</tel> <townId>1</townId> </employeeProfileContactPostModel>
multipart/form-data
Sample:
<employeeProfileContactPostModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/api.Models"><address>sample string 3</address><cityId>1</cityId><email>sample string 1</email><tel>sample string 2</tel><townId>1</townId></employeeProfileContactPostModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.