PUT account/employerProfile

Request Information

URI Parameters

None.

Body Parameters

employerProfilePostModel
Name Description Type Additional information
email

string

Required

Max length: 64

website

string

Max length: 64

employeeCount

integer (Int32)

None.

sectorId

integer (Int32)

Required

cityId

integer (Int32)

Required

townId

integer (Int32)

None.

address

string

Max length: 256

responsibleName

string

Max length: 64

responsibleTitle

string

Max length: 64

responsibleTel

string

Max length: 10

Min length: 10

responsibleEMail

string

Max length: 64

about

string

Required

Max length: 1024

Request Formats

application/json, text/json

Sample:
{
  "email": "sample string 1",
  "website": "sample string 2",
  "employeeCount": 1,
  "sectorId": 3,
  "cityId": 4,
  "townId": 5,
  "address": "sample string 6",
  "responsibleName": "sample string 7",
  "responsibleTitle": "sample string 8",
  "responsibleTel": "sample string 9",
  "responsibleEMail": "sample string 10",
  "about": "sample string 11"
}

application/xml, text/xml

Sample:
<employerProfilePostModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/api.Models">
  <about>sample string 11</about>
  <address>sample string 6</address>
  <cityId>4</cityId>
  <email>sample string 1</email>
  <employeeCount>1</employeeCount>
  <responsibleEMail>sample string 10</responsibleEMail>
  <responsibleName>sample string 7</responsibleName>
  <responsibleTel>sample string 9</responsibleTel>
  <responsibleTitle>sample string 8</responsibleTitle>
  <sectorId>3</sectorId>
  <townId>5</townId>
  <website>sample string 2</website>
</employerProfilePostModel>

multipart/form-data

Sample:
<employerProfilePostModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/api.Models"><about>sample string 11</about><address>sample string 6</address><cityId>4</cityId><email>sample string 1</email><employeeCount>1</employeeCount><responsibleEMail>sample string 10</responsibleEMail><responsibleName>sample string 7</responsibleName><responsibleTel>sample string 9</responsibleTel><responsibleTitle>sample string 8</responsibleTitle><sectorId>3</sectorId><townId>5</townId><website>sample string 2</website></employerProfilePostModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.