Skip to main content

How do I report data issues?

Submit corrections directly to our data team

Harmonic Team avatar
Written by Harmonic Team
Updated this week

If you find incorrect data on any profile, you can report it easily using either the Harmonic console or our API.

Using the Console

  1. Click the flag icon: Look for the flag icon in the top-right corner of the profile page where the incorrect data appears.

  2. Submit a data correction request: Click the flag icon to open the submission form. Provide the necessary details about the issue. Include links to external resources and references as needed.

  3. Resolution: Your report will be sent directly to our data team, who will address the issue as quickly as possible.

Using the API

You can also submit data corrections programmatically using the Submissions API.

Company data

Endpoint: POST /submissions/company_data

Authentication: Include your API key in the request header:

apikey: YOUR_API_KEY

Request body:

{   
"company_urn": "urn:harmonic:company:123",
"text": "Description of the data issue or correction",
"json_details": {
"field": "field_name",
"current_value": "existing value",
"suggested_value": "corrected value"
}
}

Parameters:

  • company_urn (required): URN or ID of the company (e.g., "urn:harmonic:company:123" or "123")

  • text (optional): Description of the data issue or correction

  • json_details (optional): Additional structured details about the issue

Person data

Endpoint: POST /submissions/person_data

Authentication: Include your API key in the request header:

apikey: YOUR_API_KEY

Request body:

{   
"person_urn": "urn:harmonic:person:456",
"text": "Description of the data issue or correction",
"json_details": {
"field": "field_name",
"current_value": "existing value",
"suggested_value": "corrected value"
}
}

Parameters:

  • person_urn (required): URN or ID of the person (e.g., "urn:harmonic:person:456" or "456")

  • text (optional): Description of the data issue or correction

  • json_details (optional): Additional structured details about the issue


Have API access and need API key? Grab your API key here.

Need API access? Reach out to your Harmonic account manager or support@harmonic.ai.

Did this answer your question?