action truora_report_behavior { label: "Report Behavior" description: "Creates a behavior item to report employee conducts that do not or might not be included in their background check. This report includes both possitive and negative behaviors and sorts them by severity.\n\n### Reasons to report a person\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Very High
(Score: 1)
Rape, Drug Dealing, Sexual Harassment
High
(Score: 0.8)
Theft, Fights, Aggressive Behaviour, Identity Fraud, Drunk, Drug Possession
Medium
(Score: 0.6)
Absences
Low
(Score: 0.4)
Tardiness, Confidentiality Breach
None
(Score: 0)
Good Reputation
Unknown
No information
\n\n**NOTE:** If the reason of your report is not here, please contact Truora support team.\n" provider: truora method: POST path: "/v1/behavior" encoding: form output: { type: "object" description: "Represents behaviour search results" required: ["behavior", "self"] properties: { behavior: { type: "array" description: "Behavior list" items: { type: "object" description: "Represents behaviour reports" required: ["birth_date", "country", "document_id", "document_type", "first_name", "last_name", "reason", "email", "feedback_date"] properties: { birth_date: { type: "string" format: "date" description: "Birth date of reported person" } country: { description: "Document country" enum: ["co", "ve", "cl", "mx", "pe", "do", "sv", "gt", "bo", "cr", "ec", "pa", "br"] type: "object" } creation_date: { type: "string" format: "date-time" description: "Feedback creation date" } document_id: { type: "string" description: "Person document ID" } document_type: { description: "Document type associated with the background check" enum: ["national-id", "passport", "foreign-id", "nit", "diplomatic-id", "civil-registration", "identity-card", "foreigner-card", "professional-card", "military-card", "pep", "nis", "dni", "rui", "license-plate", "query", "name", "rut", "nuip", "foreign-societies", "escrow", "individual-registration", "general-registration", "curp", "dui", "driver-license", "ruc"] type: "object" } email: { type: "string" description: "Reported person e-mail" } feedback_date: { type: "string" format: "date" description: "Behavior report date" } first_name: { type: "string" description: "Person first name" } last_name: { type: "string" description: "Person last name" } phone_number: { type: "string" description: "Phone number of the reported person" } reason: { type: "string" description: "Report reason" } } } } self: { type: "string" description: "Path to this resource" } } } }