Overview
To retrieve default resume of candidates that are necessary for the third-party integrations and partners with CRM. The third-party must know the GUID (unique identifier for candidate in CRM) from a previous call. Likely partner can use List call, such as Match APIs - Fetch Candidate GUIDs (REST, JSON) to get candidate GUIDs based on criteria.
Prerequisites
- Modules
- Source&CRM = ON
- Privileges
- Source&CRM - API User
- OAUTH token following the Authorization call
API Request
Path
Post
https://api2.talemetry.com/soap/profiles/v1
Request Header
Key | Value |
Authorization | your token prefixed with OAUTH, e.g.,
OAUTH TGC-1733155440r2C2BC952A8F9A34CF9 |
Accept | application/json |
Request Parameters
Field | Type | Required | Description | Sample Value |
ids | array | Yes |
The request body must be in JSON format and include an array of candidate IDs.
|
"902b3f8e-8bd6-11ef-b7ce-b24f8d2e4b83", "902f4bfe-8bdd-11ef-b7ce-b24f8d2e4b83" |
Sample Request
{
"ids": [
"0290bb50-7113-11ef-9c70-b6a35a531041",
"902b3f8e-8bd6-11ef-b7ce-b24f8d2e4b83"
]
}
Sample Response
The response will return a JSON object containing the resumes of the candidates.
{
"result": {
"message": "success",
"people": [
{
"id": "0290bb50-7113-11ef-9c70-b6a35a531041",
"created_at": "2024-12-03T02:40:19.387Z",
"updated_at": "2024-12-03T02:41:39.159Z",
"resume": {
"content": "<html><body><h2>sp_12_02_2024_06_33_PM test</h2><ul>\t<li>Email: sp+ps_12_02_2024_06_33_pm@testtlm.com</li>\t<li>Location: Claridon, OH, US</li></ul><h3>Experience</h3><ul>\t<li><p>,</p><p></p><br><p></p></li></ul><h3>Education</h3><ul>\t<li><p></p><br><p></p></li></ul><br><ul></ul></body><html><br></html></html>",
"filetype": "htm",
"filename": "sp_12_02_2024_06_33_PM_test_resume.htm",
"encoded": false
}
},
{
"id": "902b3f8e-8bd6-11ef-b7ce-b24f8d2e4b83",
"created_at": "2024-12-03T16:10:40.234Z",
"updated_at": "2024-12-03T18:17:03.381Z",
"resume": {
"content": "<html><body><h2>Testusernrtl Nrtltest</h2><ul>\t<li>Email: testnrtl@rewedwewe.com</li>\t<li>Location: , NF, , CA</li></ul><ul></ul></body><html><br></html></html>",
"filetype": "htm",
"filename": "Testusernrtl_Nrtltest_resume.htm",
"encoded": false
}
}
]
}
}