POST api/clients/review?clientId={clientId}

Reviews a candidate

Request Information

URI Parameters

NameDescriptionTypeAdditional information
clientId

string

None.

Body Parameters

Review details

ReviewDTO
NameDescriptionTypeAdditional information
Id

integer

None.

CandidateId

string

None.

ClientId

string

None.

UserId

string

None.

CreatedDateTime

date

None.

HireAgain

boolean

None.

Punctuality

integer

None.

Professionalism

integer

None.

Communication

integer

None.

Testimonial

string

None.

TestimonialVisible

boolean

None.

N_Late

boolean

None.

N_ClassMan

boolean

None.

N_Comm

boolean

None.

N_Proffesional

boolean

None.

N_Cultural

boolean

None.

N_Other

boolean

None.

N_Feedback

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "CandidateId": "sample string 1",
  "ClientId": "sample string 2",
  "UserId": "sample string 3",
  "CreatedDateTime": "2025-05-06T13:17:10.035841Z",
  "HireAgain": true,
  "Punctuality": 1,
  "Professionalism": 1,
  "Communication": 1,
  "Testimonial": "sample string 6",
  "TestimonialVisible": true,
  "N_Late": true,
  "N_ClassMan": true,
  "N_Comm": true,
  "N_Proffesional": true,
  "N_Cultural": true,
  "N_Other": true,
  "N_Feedback": "sample string 7"
}

Response Information

Resource Description

True if the review was successfully saved.

IHttpActionResult

None.

Response Formats

application/json, text/json

Sample:

Sample not available.