The Contacts & Organizations, or Rolodex, app provides the Customer Relationship Management (CRM) capabilities of the Rhythm platform. Common integrations with the Rolodex API include finding or updating contact information, demographics, or communication preferences for a Contact or Organization.
Like most of the other Rhythm apps, the Rolodex API includes endpoints for Query Definitions. These endpoints are commonly used to retrieve saved queries, which can then be executed using the Query endpoints of the System API.
https://docs.api.rhythmsoftware.com/_mock/apis/rolodex/rolodex-v1/
https://rolodex.api.rhythmsoftware.com/
https://docs.api.rhythmsoftware.com/_mock/apis/rolodex/rolodex-v1/contactDuplicates/{tenantId}
https://rolodex.api.rhythmsoftware.com/contactDuplicates/{tenantId}
curl -i -X GET \
'https://docs.api.rhythmsoftware.com/_mock/apis/rolodex/rolodex-v1/contactDuplicates/{tenantId}?exclusiveStartKey=string&fields=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
The contact duplicateswere retrieved successfully.
An alternative address postal code of the contact
The metaphones calculated from the contact's first name
The primary metaphone calculated from the contact's first name
The secondary metaphone calculated from the contact's first name
The highest confidence score within the possible duplicates excluding whitelisted records
The metaphones calculated from the contact's last name
The primary metaphone calculated from the contact's last name
The secondary metaphone calculated from the contact's last name
The IDs of contacts that have been manually identified as duplicates of this contact
The number of possible duplicates excluding whitelisted records
If this record was loaded via bulk, the timestamp when the record was processed
If this record was loaded via bulk, the ID of the bulk load process
If this record was loaded via bulk, the tenant and key of the bulk load process used as a partition key
If this record was loaded via bulk, the record number in the source file
If this record was loaded via bulk, the source file
The error associated with the calculated field
If a snapshot was restored/applies to this record, the ID of the snapshot
The date/time that this record was created, expressed in ISO-8601 date format
The ID of the user that deleted (or last tried to delete) this object
Means for passing directive information into an object processing logic
If true, this record has files in S3. If false, it doesnt, so no need to hit S3 upon deletion
If this record was last touched by a bulk data operation, the ID of that operation
If this record was last touched by a bulk data operation, the sys_version at the time of that operation
The date/time that this record record was last modified, expressed in ISO-8601 date format
The ID of the user that last modified this record
The security context of the last insert, modify, or delete performed on this item
The version to use as a base when creating a configuration snapshot; if not set, 1 is used. Helpful when creating a sandbox
A number representing the version of this record in the database
The IDs of contacts that have been manually identified as not duplicates of this contact. These IDs may appear in the possible_duplicates array but should not be presented
[ { "alt_address_postal_code": "string", "email_address": "string", "email_address2": "string", "email_address3": "string", "first_name": "string", "first_name_metaphones": [ … ], "first_name_primary_metaphone": "string", "first_name_secondary_metaphone": "string", "highest_confidence": 0.1, "home_address_postal_code": "string", "home_phone_number": "string", "id": "string", "last_name": "string", "last_name_metaphones": [ … ], "last_name_primary_metaphone": "string", "last_name_secondary_metaphone": "string", "manual_duplicates": [ … ], "middle_name": "string", "mobile_phone_number": "string", "number_of_possible_duplicates": 0.1, "organization_id": "string", "other_phone_numbers": [ … ], "phone_numbers": [ … ], "possible_duplicates": [ … ], "postal_codes": [ … ], "preferred_address": { … }, "school_phone_number": "string", "sys_bulk_load_at": "string", "sys_bulk_load_id": "string", "sys_bulk_load_pk": "string", "sys_bulk_load_record_no": 0.1, "sys_bulk_load_source_file": "string", "sys_calculated_field_error": "string", "sys_calculated_field_errors": [ … ], "sys_configuration_snapshot_id": "string", "sys_created_at": "2019-08-24T14:15:22Z", "sys_created_by_id": "string", "sys_deleted_by_id": "string", "sys_directive": "string", "sys_external_id": "string", "sys_has_files_in_s3": true, "sys_last_bulk_data_operation_id": "string", "sys_last_bulk_data_operation_sys_version": "string", "sys_last_modified_at": "2019-08-24T14:15:22Z", "sys_last_modified_by_id": "string", "sys_last_security_context": {}, "sys_locked": true, "sys_match_directive": "string", "sys_snapshot_base_version": 0.1, "sys_version": 0.1, "whitelist": [ … ], "work_address_postal_code": "string", "work_mobile_phone_number": "string", "work_phone_number": "string" } ]
The data you would like to try to check for duplicates
An alternative address postal code of the contact
The minimum degree of confidence on a scale of 1 to 100 that you would like considered a potential duplicate
https://docs.api.rhythmsoftware.com/_mock/apis/rolodex/rolodex-v1/contactDuplicates/{tenantId}
https://rolodex.api.rhythmsoftware.com/contactDuplicates/{tenantId}
curl -i -X POST \
'https://docs.api.rhythmsoftware.com/_mock/apis/rolodex/rolodex-v1/contactDuplicates/{tenantId}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"alt_address_postal_code": "string",
"email_address": "string",
"email_address2": "string",
"email_address3": "string",
"first_name": "string",
"home_address_postal_code": "string",
"last_name": "string",
"minimum_confidence": 0.1,
"work_address_postal_code": "string"
}'
[ { "confidence": 0.1, "match": "string" } ]
https://docs.api.rhythmsoftware.com/_mock/apis/rolodex/rolodex-v1/contactDuplicates/{tenantId}/batch
https://rolodex.api.rhythmsoftware.com/contactDuplicates/{tenantId}/batch
curl -i -X POST \
'https://docs.api.rhythmsoftware.com/_mock/apis/rolodex/rolodex-v1/contactDuplicates/{tenantId}/batch' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"operations": [
{
"id": null,
"object": {},
"operation": "create",
"patch_directives": {
"0": {
"op": "add",
"path": "string",
"value": "string"
}
}
}
]
}'
{ "error_count": 0.1, "results": [ { … } ], "success_count": 0.1 }
The data you would like to try to check for duplicates
The minimum degree of confidence on a scale of 1 to 100 that you would like considered a potential duplicate
https://docs.api.rhythmsoftware.com/_mock/apis/rolodex/rolodex-v1/contactDuplicates/{tenantId}/portal
https://rolodex.api.rhythmsoftware.com/contactDuplicates/{tenantId}/portal
curl -i -X POST \
'https://docs.api.rhythmsoftware.com/_mock/apis/rolodex/rolodex-v1/contactDuplicates/{tenantId}/portal' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"email_address": "string",
"first_name": "string",
"last_name": "string",
"minimum_confidence": 0.1,
"postal_code": "string"
}'
[ { "id": "string", "location": { … }, "masked_email_addresses": [ … ], "masked_phone_numbers": [ … ], "name": "string", "organization_name": "string" } ]
https://docs.api.rhythmsoftware.com/_mock/apis/rolodex/rolodex-v1/contactDuplicates/{tenantId}/{id}
https://rolodex.api.rhythmsoftware.com/contactDuplicates/{tenantId}/{id}
curl -i -X GET \
'https://docs.api.rhythmsoftware.com/_mock/apis/rolodex/rolodex-v1/contactDuplicates/{tenantId}/{id}?consistentRead=string&fields=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
The contact duplicate was retrieved successfully.
An alternative address postal code of the contact
The metaphones calculated from the contact's first name
The primary metaphone calculated from the contact's first name
The secondary metaphone calculated from the contact's first name
The highest confidence score within the possible duplicates excluding whitelisted records
The metaphones calculated from the contact's last name
The primary metaphone calculated from the contact's last name
The secondary metaphone calculated from the contact's last name
The IDs of contacts that have been manually identified as duplicates of this contact
The number of possible duplicates excluding whitelisted records
If this record was loaded via bulk, the timestamp when the record was processed
If this record was loaded via bulk, the ID of the bulk load process
If this record was loaded via bulk, the tenant and key of the bulk load process used as a partition key
If this record was loaded via bulk, the record number in the source file
If this record was loaded via bulk, the source file
The error associated with the calculated field
If a snapshot was restored/applies to this record, the ID of the snapshot
The date/time that this record was created, expressed in ISO-8601 date format
The ID of the user that deleted (or last tried to delete) this object
Means for passing directive information into an object processing logic
If true, this record has files in S3. If false, it doesnt, so no need to hit S3 upon deletion
If this record was last touched by a bulk data operation, the ID of that operation
If this record was last touched by a bulk data operation, the sys_version at the time of that operation
The date/time that this record record was last modified, expressed in ISO-8601 date format
The ID of the user that last modified this record
The security context of the last insert, modify, or delete performed on this item
The version to use as a base when creating a configuration snapshot; if not set, 1 is used. Helpful when creating a sandbox
A number representing the version of this record in the database
The IDs of contacts that have been manually identified as not duplicates of this contact. These IDs may appear in the possible_duplicates array but should not be presented
{ "alt_address_postal_code": "string", "email_address": "string", "email_address2": "string", "email_address3": "string", "first_name": "string", "first_name_metaphones": [ "string" ], "first_name_primary_metaphone": "string", "first_name_secondary_metaphone": "string", "highest_confidence": 0.1, "home_address_postal_code": "string", "home_phone_number": "string", "id": "string", "last_name": "string", "last_name_metaphones": [ "string" ], "last_name_primary_metaphone": "string", "last_name_secondary_metaphone": "string", "manual_duplicates": [ "string" ], "middle_name": "string", "mobile_phone_number": "string", "number_of_possible_duplicates": 0.1, "organization_id": "string", "other_phone_numbers": [ { … } ], "phone_numbers": [ "string" ], "possible_duplicates": [ { … } ], "postal_codes": [ "string" ], "preferred_address": { "city": "string", "country": "string", "country_name": "string", "county": "string", "latitude": 0.1, "line1": "string", "line2": "string", "line3": "string", "longitude": 0.1, "postal_code": "string", "state": "string", "time_zone_id": "string" }, "school_phone_number": "string", "sys_bulk_load_at": "string", "sys_bulk_load_id": "string", "sys_bulk_load_pk": "string", "sys_bulk_load_record_no": 0.1, "sys_bulk_load_source_file": "string", "sys_calculated_field_error": "string", "sys_calculated_field_errors": [ { … } ], "sys_configuration_snapshot_id": "string", "sys_created_at": "2019-08-24T14:15:22Z", "sys_created_by_id": "string", "sys_deleted_by_id": "string", "sys_directive": "string", "sys_external_id": "string", "sys_has_files_in_s3": true, "sys_last_bulk_data_operation_id": "string", "sys_last_bulk_data_operation_sys_version": "string", "sys_last_modified_at": "2019-08-24T14:15:22Z", "sys_last_modified_by_id": "string", "sys_last_security_context": {}, "sys_locked": true, "sys_match_directive": "string", "sys_snapshot_base_version": 0.1, "sys_version": 0.1, "whitelist": [ "string" ], "work_address_postal_code": "string", "work_mobile_phone_number": "string", "work_phone_number": "string" }
https://docs.api.rhythmsoftware.com/_mock/apis/rolodex/rolodex-v1/contactDuplicates/{tenantId}/{id}
https://rolodex.api.rhythmsoftware.com/contactDuplicates/{tenantId}/{id}
curl -i -X PATCH \
'https://docs.api.rhythmsoftware.com/_mock/apis/rolodex/rolodex-v1/contactDuplicates/{tenantId}/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '[
{
"op": "add",
"path": "string",
"value": "string"
}
]'
The contact duplicate was patched successfully.
An alternative address postal code of the contact
The metaphones calculated from the contact's first name
The primary metaphone calculated from the contact's first name
The secondary metaphone calculated from the contact's first name
The highest confidence score within the possible duplicates excluding whitelisted records
The metaphones calculated from the contact's last name
The primary metaphone calculated from the contact's last name
The secondary metaphone calculated from the contact's last name
The IDs of contacts that have been manually identified as duplicates of this contact
The number of possible duplicates excluding whitelisted records
If this record was loaded via bulk, the timestamp when the record was processed
If this record was loaded via bulk, the ID of the bulk load process
If this record was loaded via bulk, the tenant and key of the bulk load process used as a partition key
If this record was loaded via bulk, the record number in the source file
If this record was loaded via bulk, the source file
The error associated with the calculated field
If a snapshot was restored/applies to this record, the ID of the snapshot
The date/time that this record was created, expressed in ISO-8601 date format
The ID of the user that deleted (or last tried to delete) this object
Means for passing directive information into an object processing logic
If true, this record has files in S3. If false, it doesnt, so no need to hit S3 upon deletion
If this record was last touched by a bulk data operation, the ID of that operation
If this record was last touched by a bulk data operation, the sys_version at the time of that operation
The date/time that this record record was last modified, expressed in ISO-8601 date format
The ID of the user that last modified this record
The security context of the last insert, modify, or delete performed on this item
The version to use as a base when creating a configuration snapshot; if not set, 1 is used. Helpful when creating a sandbox
A number representing the version of this record in the database
The IDs of contacts that have been manually identified as not duplicates of this contact. These IDs may appear in the possible_duplicates array but should not be presented
{ "alt_address_postal_code": "string", "email_address": "string", "email_address2": "string", "email_address3": "string", "first_name": "string", "first_name_metaphones": [ "string" ], "first_name_primary_metaphone": "string", "first_name_secondary_metaphone": "string", "highest_confidence": 0.1, "home_address_postal_code": "string", "home_phone_number": "string", "id": "string", "last_name": "string", "last_name_metaphones": [ "string" ], "last_name_primary_metaphone": "string", "last_name_secondary_metaphone": "string", "manual_duplicates": [ "string" ], "middle_name": "string", "mobile_phone_number": "string", "number_of_possible_duplicates": 0.1, "organization_id": "string", "other_phone_numbers": [ { … } ], "phone_numbers": [ "string" ], "possible_duplicates": [ { … } ], "postal_codes": [ "string" ], "preferred_address": { "city": "string", "country": "string", "country_name": "string", "county": "string", "latitude": 0.1, "line1": "string", "line2": "string", "line3": "string", "longitude": 0.1, "postal_code": "string", "state": "string", "time_zone_id": "string" }, "school_phone_number": "string", "sys_bulk_load_at": "string", "sys_bulk_load_id": "string", "sys_bulk_load_pk": "string", "sys_bulk_load_record_no": 0.1, "sys_bulk_load_source_file": "string", "sys_calculated_field_error": "string", "sys_calculated_field_errors": [ { … } ], "sys_configuration_snapshot_id": "string", "sys_created_at": "2019-08-24T14:15:22Z", "sys_created_by_id": "string", "sys_deleted_by_id": "string", "sys_directive": "string", "sys_external_id": "string", "sys_has_files_in_s3": true, "sys_last_bulk_data_operation_id": "string", "sys_last_bulk_data_operation_sys_version": "string", "sys_last_modified_at": "2019-08-24T14:15:22Z", "sys_last_modified_by_id": "string", "sys_last_security_context": {}, "sys_locked": true, "sys_match_directive": "string", "sys_snapshot_base_version": 0.1, "sys_version": 0.1, "whitelist": [ "string" ], "work_address_postal_code": "string", "work_mobile_phone_number": "string", "work_phone_number": "string" }
The updated contact duplicate that will be saved.
An alternative address postal code of the contact
The metaphones calculated from the contact's first name
The primary metaphone calculated from the contact's first name
The secondary metaphone calculated from the contact's first name
The highest confidence score within the possible duplicates excluding whitelisted records
The metaphones calculated from the contact's last name
The primary metaphone calculated from the contact's last name
The secondary metaphone calculated from the contact's last name
The IDs of contacts that have been manually identified as duplicates of this contact
The number of possible duplicates excluding whitelisted records
If this record was loaded via bulk, the timestamp when the record was processed
If this record was loaded via bulk, the ID of the bulk load process
If this record was loaded via bulk, the tenant and key of the bulk load process used as a partition key
If this record was loaded via bulk, the record number in the source file
If this record was loaded via bulk, the source file
The error associated with the calculated field
If a snapshot was restored/applies to this record, the ID of the snapshot
The date/time that this record was created, expressed in ISO-8601 date format
The ID of the user that deleted (or last tried to delete) this object
Means for passing directive information into an object processing logic
If true, this record has files in S3. If false, it doesnt, so no need to hit S3 upon deletion
If this record was last touched by a bulk data operation, the ID of that operation
If this record was last touched by a bulk data operation, the sys_version at the time of that operation
The date/time that this record record was last modified, expressed in ISO-8601 date format
The ID of the user that last modified this record
The security context of the last insert, modify, or delete performed on this item
The version to use as a base when creating a configuration snapshot; if not set, 1 is used. Helpful when creating a sandbox
A number representing the version of this record in the database
The IDs of contacts that have been manually identified as not duplicates of this contact. These IDs may appear in the possible_duplicates array but should not be presented
https://docs.api.rhythmsoftware.com/_mock/apis/rolodex/rolodex-v1/contactDuplicates/{tenantId}/{id}
https://rolodex.api.rhythmsoftware.com/contactDuplicates/{tenantId}/{id}
curl -i -X PUT \
'https://docs.api.rhythmsoftware.com/_mock/apis/rolodex/rolodex-v1/contactDuplicates/{tenantId}/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"alt_address_postal_code": "string",
"email_address": "string",
"email_address2": "string",
"email_address3": "string",
"first_name": "string",
"first_name_metaphones": [
"string"
],
"first_name_primary_metaphone": "string",
"first_name_secondary_metaphone": "string",
"highest_confidence": 0.1,
"home_address_postal_code": "string",
"home_phone_number": "string",
"id": "string",
"last_name": "string",
"last_name_metaphones": [
"string"
],
"last_name_primary_metaphone": "string",
"last_name_secondary_metaphone": "string",
"manual_duplicates": [
"string"
],
"middle_name": "string",
"mobile_phone_number": "string",
"number_of_possible_duplicates": 0.1,
"organization_id": "string",
"other_phone_numbers": [
{
"phone_number": "string",
"type_id": "string"
}
],
"phone_numbers": [
"string"
],
"possible_duplicates": [
{
"confidence": 0.1,
"match": "string"
}
],
"postal_codes": [
"string"
],
"preferred_address": {
"city": "string",
"country": "string",
"country_name": "string",
"county": "string",
"latitude": 0.1,
"line1": "string",
"line2": "string",
"line3": "string",
"longitude": 0.1,
"postal_code": "string",
"state": "string",
"time_zone_id": "string"
},
"school_phone_number": "string",
"sys_bulk_load_at": "string",
"sys_bulk_load_id": "string",
"sys_bulk_load_pk": "string",
"sys_bulk_load_record_no": 0.1,
"sys_bulk_load_source_file": "string",
"sys_calculated_field_error": "string",
"sys_calculated_field_errors": [
{
"error": "string",
"field": "string"
}
],
"sys_configuration_snapshot_id": "string",
"sys_created_at": "2019-08-24T14:15:22Z",
"sys_created_by_id": "string",
"sys_deleted_by_id": "string",
"sys_directive": "string",
"sys_external_id": "string",
"sys_has_files_in_s3": true,
"sys_last_bulk_data_operation_id": "string",
"sys_last_bulk_data_operation_sys_version": "string",
"sys_last_modified_at": "2019-08-24T14:15:22Z",
"sys_last_modified_by_id": "string",
"sys_last_security_context": {},
"sys_locked": true,
"sys_match_directive": "string",
"sys_snapshot_base_version": 0.1,
"sys_version": 0.1,
"whitelist": [
"string"
],
"work_address_postal_code": "string",
"work_mobile_phone_number": "string",
"work_phone_number": "string"
}'
The contact duplicate was updated successfully.
An alternative address postal code of the contact
The metaphones calculated from the contact's first name
The primary metaphone calculated from the contact's first name
The secondary metaphone calculated from the contact's first name
The highest confidence score within the possible duplicates excluding whitelisted records
The metaphones calculated from the contact's last name
The primary metaphone calculated from the contact's last name
The secondary metaphone calculated from the contact's last name
The IDs of contacts that have been manually identified as duplicates of this contact
The number of possible duplicates excluding whitelisted records
If this record was loaded via bulk, the timestamp when the record was processed
If this record was loaded via bulk, the ID of the bulk load process
If this record was loaded via bulk, the tenant and key of the bulk load process used as a partition key
If this record was loaded via bulk, the record number in the source file
If this record was loaded via bulk, the source file
The error associated with the calculated field
If a snapshot was restored/applies to this record, the ID of the snapshot
The date/time that this record was created, expressed in ISO-8601 date format
The ID of the user that deleted (or last tried to delete) this object
Means for passing directive information into an object processing logic
If true, this record has files in S3. If false, it doesnt, so no need to hit S3 upon deletion
If this record was last touched by a bulk data operation, the ID of that operation
If this record was last touched by a bulk data operation, the sys_version at the time of that operation
The date/time that this record record was last modified, expressed in ISO-8601 date format
The ID of the user that last modified this record
The security context of the last insert, modify, or delete performed on this item
The version to use as a base when creating a configuration snapshot; if not set, 1 is used. Helpful when creating a sandbox
A number representing the version of this record in the database
The IDs of contacts that have been manually identified as not duplicates of this contact. These IDs may appear in the possible_duplicates array but should not be presented
{ "alt_address_postal_code": "string", "email_address": "string", "email_address2": "string", "email_address3": "string", "first_name": "string", "first_name_metaphones": [ "string" ], "first_name_primary_metaphone": "string", "first_name_secondary_metaphone": "string", "highest_confidence": 0.1, "home_address_postal_code": "string", "home_phone_number": "string", "id": "string", "last_name": "string", "last_name_metaphones": [ "string" ], "last_name_primary_metaphone": "string", "last_name_secondary_metaphone": "string", "manual_duplicates": [ "string" ], "middle_name": "string", "mobile_phone_number": "string", "number_of_possible_duplicates": 0.1, "organization_id": "string", "other_phone_numbers": [ { … } ], "phone_numbers": [ "string" ], "possible_duplicates": [ { … } ], "postal_codes": [ "string" ], "preferred_address": { "city": "string", "country": "string", "country_name": "string", "county": "string", "latitude": 0.1, "line1": "string", "line2": "string", "line3": "string", "longitude": 0.1, "postal_code": "string", "state": "string", "time_zone_id": "string" }, "school_phone_number": "string", "sys_bulk_load_at": "string", "sys_bulk_load_id": "string", "sys_bulk_load_pk": "string", "sys_bulk_load_record_no": 0.1, "sys_bulk_load_source_file": "string", "sys_calculated_field_error": "string", "sys_calculated_field_errors": [ { … } ], "sys_configuration_snapshot_id": "string", "sys_created_at": "2019-08-24T14:15:22Z", "sys_created_by_id": "string", "sys_deleted_by_id": "string", "sys_directive": "string", "sys_external_id": "string", "sys_has_files_in_s3": true, "sys_last_bulk_data_operation_id": "string", "sys_last_bulk_data_operation_sys_version": "string", "sys_last_modified_at": "2019-08-24T14:15:22Z", "sys_last_modified_by_id": "string", "sys_last_security_context": {}, "sys_locked": true, "sys_match_directive": "string", "sys_snapshot_base_version": 0.1, "sys_version": 0.1, "whitelist": [ "string" ], "work_address_postal_code": "string", "work_mobile_phone_number": "string", "work_phone_number": "string" }