GET Api/ApplicantCompass/InterestProfile/{id}
Retrieve an interest profile by its ID.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
ID |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Interest Profile
InterestProfileResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
ID of the interest profile. |
integer |
None. |
| SpeculativeJobId |
ID of the speculative job. |
integer |
None. |
| JobInsightId |
ID of the job insight. |
integer |
None. |
| JobIds |
IDs of published jobs associated with the interest profile. |
Collection of integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"SpeculativeJobId": 2,
"JobInsightId": 3,
"JobIds": [
1,
2
]
}
application/xml, text/xml
Sample:
<InterestProfileResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/eRecruiter.Api.Responses">
<Id>1</Id>
<JobIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:int>1</d2p1:int>
<d2p1:int>2</d2p1:int>
</JobIds>
<JobInsightId>3</JobInsightId>
<SpeculativeJobId>2</SpeculativeJobId>
</InterestProfileResponse>