mirror of
https://github.com/acaloiaro/kombo-ruby-sdk
synced 2026-07-21 10:12:21 +00:00
5.1 KiB
5.1 KiB
Kombo::GetAtsCandidatesPositiveResponseDataResultsInner
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | String | The globally unique ID of this object generated by Kombo. We recommend using this as a stable primary key for syncing. | |
| remote_id | String | The raw ID of the object in the remote system. We don't recommend using this as a primary key on your side as it might sometimes be compromised of multiple identifiers if a system doesn't provide a clear primary key. | |
| first_name | String | First name of the candidate. | |
| last_name | String | Last name of the candidate. | |
| company | String | The current company of the candidate. | |
| title | String | The current job title of the candidate. | |
| confidential | Boolean | Whether the candidate’s profile is confidential in the ATS. | |
| source | String | The hiring source of the candidate. If you're a job board or recruiting service, you can use this to validate which candidates applied through your service and ensure that the correct referral compensation is paid out. | |
| phone_numbers | Array<GetAtsApplicationsPositiveResponseDataResultsInnerCandidatePhoneNumbersInner> | A list of phone numbers of the candidate. | [optional] |
| email_addresses | Array<GetAtsApplicationsPositiveResponseDataResultsInnerCandidateEmailAddressesInner> | A list of email addresses of the candidate with an optional type. If an email address is invalid, it will be filtered out. | [optional] |
| social_media | Array<GetAtsApplicationsPositiveResponseDataResultsInnerCandidateSocialMediaInner> | List of social media accounts of the candidate. | [optional] |
| location | GetAtsCandidatesPositiveResponseDataResultsInnerLocation | [optional] | |
| custom_fields | Hash<String, Object> | A key-value store of fields not covered by the schema. Read more | |
| integration_fields | Array<GetHrisEmployeesPositiveResponseDataResultsInnerIntegrationFieldsInner> | An array of selected passthrough integration fields. Read more | |
| remote_url | String | URL to the candidate profile in the source ATS system. When embedding this in your system, please consider that not for all ATS a dedicated candidate profile URL is available, so you might need to fall back to the application URL. | |
| remote_created_at | Time | The date and time the object was created in the remote system. | |
| remote_updated_at | Time | A timestamp retrieved from the remote system, describing when the resource was last updated. | |
| remote_data | Hash<String, Object> | Includes the data fetched from the remote system. Please be aware that including this in you scope config might violate other scopes that are set. Remote data always has the endpoint path that we got the data from as the top level key. For example, it could look like: `{ "/companies": { ... }}` This is not available on all plans. Reach out to Kombo if you need it. | |
| changed_at | Time | The timestamp when this specific record was last modified. This field only updates when properties directly on this record change, NOT when related or nested models change. For filtering that considers nested data changes, use the `updated_after` parameter which will return records when either the record itself OR its related models have been updated. | |
| remote_deleted_at | Time | The date and time the object was deleted in the remote system. Objects are automatically marked as deleted when Kombo can't retrieve them from the remote system anymore. Kombo will also anonymize entries 14 days after they disappear. | |
| applications | Array<GetAtsCandidatesPositiveResponseDataResultsInnerApplicationsInner> | ||
| tags | Array<GetAtsApplicationsPositiveResponseDataResultsInnerCandidateTagsInner> |
Example
require 'kombo_client'
instance = Kombo::GetAtsCandidatesPositiveResponseDataResultsInner.new(
id: null,
remote_id: null,
first_name: null,
last_name: null,
company: null,
title: null,
confidential: null,
source: null,
phone_numbers: null,
email_addresses: null,
social_media: null,
location: null,
custom_fields: null,
integration_fields: null,
remote_url: null,
remote_created_at: null,
remote_updated_at: null,
remote_data: null,
changed_at: null,
remote_deleted_at: null,
applications: null,
tags: null
)