PUT api/Values/Put/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

EmployeeModel
NameDescriptionTypeAdditional information
Id

integer

None.

Name

string

None.

Username

string

None.

NokiaId

string

None.

Email

string

None.

Profiles

Collection of string

None.

ProfilesDescription

string

None.

Status

boolean

None.

DateRegister

date

None.

CreaAndUf

string

None.

UfId

integer

None.

UserRegister

string

None.

CollaboratorIsRepairTechnician

boolean

None.

ExpirationDate

date

None.

Blocked

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "id": 1,
  "name": "sample string 2",
  "username": "sample string 3",
  "nokiaId": "sample string 4",
  "email": "sample string 5",
  "profiles": [
    "sample string 1",
    "sample string 2"
  ],
  "profilesDescription": "sample string 6",
  "status": true,
  "dateRegister": "2026-05-18T13:41:10.6392237+00:00",
  "creaAndUf": "sample string 9",
  "ufId": 1,
  "userRegister": "sample string 10",
  "collaboratorIsRepairTechnician": true,
  "expirationDate": "2026-05-18T13:41:10.6392237+00:00",
  "blocked": true
}

application/xml, text/xml

Sample:
<EmployeeModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ACS.Models">
  <Blocked>true</Blocked>
  <CollaboratorIsRepairTechnician>true</CollaboratorIsRepairTechnician>
  <CreaAndUf>sample string 9</CreaAndUf>
  <DateRegister>2026-05-18T13:41:10.6392237+00:00</DateRegister>
  <Email>sample string 5</Email>
  <ExpirationDate>2026-05-18T13:41:10.6392237+00:00</ExpirationDate>
  <Id>1</Id>
  <Name>sample string 2</Name>
  <NokiaId>sample string 4</NokiaId>
  <Profiles xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </Profiles>
  <ProfilesDescription>sample string 6</ProfilesDescription>
  <Status>true</Status>
  <UfId>1</UfId>
  <UserRegister>sample string 10</UserRegister>
  <Username>sample string 3</Username>
</EmployeeModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.