GET api/Candidate/GetCandidateComments?candidateId={candidateId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| candidateId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
CandidateCommentDTO| Name | Description | Type | Additional 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": "2026-02-03T18:30:03.9333929-08:00",
"ManagerAssociateId": 1,
"AgentName": "sample string 3"
},
{
"LeadId": 1,
"CandidateId": 1,
"CommentId": 1,
"Comment": "sample string 2",
"CommentDate": "2026-02-03T18:30:03.9333929-08:00",
"ManagerAssociateId": 1,
"AgentName": "sample string 3"
}
]
}