Skip to main content

Add Record To Folder

Add Record To Folder
POST

Add a record to a folder using the record slug. ATZ CRM supports candidate, contact, deal, job, and organization slugs. The slug must belong to the same entity type as the folder.

Request

POST /v1/folder/{id}/record

Path Parameters

ParameterTypeRequiredDescription
idintegerYesFolder id.

Body Parameters

ParameterTypeRequiredDescription
slugstringYesCandidate, contact, deal, job, or organization slug.

Request Example

{
"slug": "candidate_0d25558c1a77fc2d7d98"
}

Response

200
{
"message": "Record added successfully"
}
400
{
"message": "Record slug entity must match folder entity: candidate"
}
404
{
"message": "Record not found"
}