POST api/summaries/placements/candidates
Request Information
URI Parameters
None.
Body Parameters
PlacementSummaryRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| EmailAddresses | Collection of string |
None. |
|
| From | date |
None. |
|
| Until | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"EmailAddresses": [
"sample string 1",
"sample string 2"
],
"From": "2025-11-06T20:34:51.9151586Z",
"Until": "2025-11-06T20:34:51.9151586Z"
}
Response Information
Resource Description
CandidatePlacementSummaryResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | Collection of CandidatePlacementSummaryRecord |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": [
{
"CandidateId": "sample string 1",
"CandidateEmail": "sample string 2",
"AllOfferCount": 3,
"PlacedCount": 4,
"SentCount": 5,
"AppliedCount": 6,
"RejectedCount": 7,
"ExpiredCount": 8
},
{
"CandidateId": "sample string 1",
"CandidateEmail": "sample string 2",
"AllOfferCount": 3,
"PlacedCount": 4,
"SentCount": 5,
"AppliedCount": 6,
"RejectedCount": 7,
"ExpiredCount": 8
}
]
}