Skip to main content

Call Attributes

Call attributes are metadata associated with calls in your FreJun account. They can be used to store additional information about calls, such as the purpose of the call, the department handling it, or any other relevant details.

Adding Call Attributes to a call

PATCH/api/v1/integrations/update-call-log/

Headers

NameValue
AuthorizationBearer Access Token
Content-Typeapplication/json

Query Parameters

NameTypeRequiredDescription
emailstringYesThe email of Frejun User

Payload

call_id
integer

ID of the call to update

name
string

New name for the contact

call_reason
string

Reason for the call

call_outcome
string

Outcome of the call

notes
string

Additional notes

candidate_id
string

Candidate reference ID

tag_ids
Array of integers

List of tag IDs to associate (check retrieving call attributes API in Account Management -> Manage Call Attributes)

Response

{
"application/json": {
"example": {
"success": true,
"message": "Successfully updated the call log",
"data": {
"id": 12345,
"call_id": "CALL123",
"creator": "[email protected]",
"start": "2024-07-22T10:00:00Z",
"end": "2024-07-22T10:30:00Z",
"duration": 1800,
"call_status": "completed",
"call_type": "outbound",
"candidate_details": {
"name": "John Doe",
"phone_number": "+911234567890"
},
"call_reason": "Interview",
"call_outcome": "Selected",
"tags": [
{
"id": 1,
"name": "Tech"
},
{
"id": 2,
"name": "Urgent"
}
],
"notes": "Candidate performed well.",
"insights": {
"summary": "Good communication skills."
},
"virtual_number": {
"id": 10,
"name": "Recruitment VN",
"country_code": "+91",
"number": "9876543210",
"location": "IN",
"type": "mobile",
"default_calling_number": true,
"default_sms_number": false
},
"job_id": "JOB123",
"transaction_id": "TRN123",
"reference_id": "REF123"
}
}
}
}