GET api/Candidate/GetCandidateComments?candidateId={candidateId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
candidateId

integer

Required

Body Parameters

None.

Response Information

Resource Description

CandidateCommentDTO
NameDescriptionTypeAdditional information
CandidateId

integer

None.

CandidateName

string

None.

ContactNumber

string

None.

CandidateComments

Collection of CommentDTO

None.

Response Formats

application/json, text/json

Sample:
{
  "CandidateId": 1,
  "CandidateName": "sample string 2",
  "ContactNumber": "sample string 3",
  "CandidateComments": [
    {
      "LeadId": 1,
      "CandidateId": 1,
      "CommentId": 1,
      "Comment": "sample string 2",
      "CommentDate": "2025-10-14T00:40:27.2090884-07:00",
      "ManagerAssociateId": 1,
      "AgentName": "sample string 3"
    },
    {
      "LeadId": 1,
      "CandidateId": 1,
      "CommentId": 1,
      "Comment": "sample string 2",
      "CommentDate": "2025-10-14T00:40:27.2090884-07:00",
      "ManagerAssociateId": 1,
      "AgentName": "sample string 3"
    }
  ]
}