Changelog
API Changelog: 2026-02-23
This update includes a minor, non-breaking improvement to provide more clarity on an upcoming feature related to monitoring alerts. We've added a descriptive comment to an enum value to prepare for future functionality and prevent confusion. The update also introduces a set of generic, non-country-specific legal forms. This enhancement allows for better classification of custom companies or companies from jurisdictions not explicitly supported by our country-specific codes. This is a non-breaking change.
Improvements
-
Clarified status of
COMPANY_INFORMATIONalert kind We've added a description to theCOMPANY_INFORMATIONvalue in theDatasetKindenum. This description clarifies that this alert kind is currently under development and not yet active. Alerts with this kind will not contain any change data for the time being. This is a preparatory, non-breaking change for a future feature. -
Added Global Legal Form Kinds We've expanded the
LegalFormKindenum with new generic values to represent common company structures in a globally-recognized, non-country-specific way. This is particularly useful when creating or updating custom companies where a precise, country-specific legal form is not available or applicable.The following new values have been added to the
LegalFormKindenum:GLOBAL_COOPERATIVEGLOBAL_FOUNDATIONGLOBAL_GOVERNMENT_ENTITYGLOBAL_LIMITED_COMPANYGLOBAL_LIMITED_PARTNERSHIPGLOBAL_NON_PROFITGLOBAL_OTHERGLOBAL_PARTNERSHIPGLOBAL_PUBLIC_LIMITED_COMPANYGLOBAL_SOLE_PROPRIETORSHIPGLOBAL_TRUST
As this is an additive change to an enum, it is non-breaking and will not impact existing integrations.
API Changelog: 2026-02-18
This update introduces the ability to programmatically create reviews for private persons. This provides feature parity with the existing review creation functionality for companies, enabling more comprehensive automation of compliance workflows.
Features
- Added mutation to create reviews for private persons
You can now programmatically initiate a review for a
PrivatePersonusing the newreviewPrivatePersonCreatemutation. This works similarly to the existingreviewCompanyCreatemutation for companies. Pass thePrivatePersonIdto start a review, and the API will return aPrivatePersonReviewPayloadcontaining the success status and the resulting risk class.
API Changelog: 2026-02-13
This update introduces a new mutation, alertUpdate, allowing you to programmatically manage the state of monitoring alerts. This is a non-breaking change.
New Features
-
New
alertUpdatemutation for managing alerts You can now programmatically update the state of one or more monitoring alerts using the newalertUpdatemutation. This allows you to mark alerts asRESOLVEDorUNRESOLVEDin bulk by providing a list of alert IDs. This change simplifies alert lifecycle management within your applications.The mutation uses the new
AlertUpdateInputand returns anAlertUpdatePayload.Example Usage:
mutation UpdateAlerts { alertUpdate(where: { ids: ["alert-id-1", "alert-id-2"], state: RESOLVED }) { success } }
API Changelog: 2026-02-12
This update introduces a powerful new Custom Risk Fields feature. You can now define, assign, and query your own risk attributes for companies and private persons, enabling more tailored and comprehensive risk assessments based on your organization's specific criteria.
New Features
-
Manage and query Custom Risk Fields on entities
You can now manage and retrieve custom risk data to enrich entity profiles. This feature allows for more flexible and specific risk scoring tailored to your needs. The workflow is as follows:
-
Discover available fields: Use the new
customRiskFieldsquery to get a list of all custom risk field definitions configured for your team. This will return each field's ID, name, type (e.g.,SINGLE_SELECT,MULTI_SELECT), and available options. -
Assign values to an entity: Use the new
entityUpdateCustomRiskFieldmutation to set or update the value of a custom risk field for a specific company or person. You provide the entity's ID, the risk field's ID, and the selected option ID(s). -
Read assigned values: The assigned custom risk field values for an entity can be retrieved via the
customRiskFieldsfield, now available on theCompanyandPrivatePersontypes.
-
API Changelog: 2026-02-11
This update introduces a new mutation, attachFormInstance, which allows for associating an existing, externally initiated form instance with a specific company in the system. This provides greater flexibility for workflows where forms are handled outside of the standard API process.
Features
-
New
attachFormInstancemutation A new mutation has been added to enable linking a form instance to a company. This is useful when a form is initiated through an external process and needs to be programmatically associated with a company record.The mutation
attachFormInstancerequires thecompanyIdand theformInstanceIdto be attached. It returns a booleansuccessflag to indicate if the operation was successful.Example Usage:
mutation AttachFormInstanceToCompany($companyId: CompanyId!, $formInstanceId: FormInstanceId!) { attachFormInstance(where: { companyId: $companyId, formInstanceId: $formInstanceId }) { success } }Associated Schema Changes:
- New
Mutationfield:attachFormInstance(where: AttachFormInstanceInput!): AttachFormInstancePayload! - New
Inputtype:AttachFormInstanceInput - New
Type:AttachFormInstancePayload
- New
API Changelog: 2026-02-10
This update introduces new capabilities for managing customer-facing forms. You can now programmatically generate a shareable URL for an existing form and cancel forms that are in progress. We've also updated the description of a related field to improve clarity.
Features
-
Added
createFormUrlmutation to generate form URLs. You can now create a shareable URL for an active customer-facing form. This is useful when you need to re-send a form link to a customer. Use thecreateFormUrlmutation with acompanyIdanddocumentId. You can also specify an optionaltimeToLivefor the URL. -
Added
cancelFormmutation to cancel active forms. The newcancelFormmutation allows you to cancel an active customer-facing form that is currently in progress. This action requires thecompanyIdand thedocumentIdof the form instance. The associated document's status will be set toCANCELLED. -
Clarified
Company.documentsfield description. The description for theCompany.documentsfield has been updated to clarify that it returns a list of both completed documents and document orders that are in progress. This is a non-functional change intended to improve documentation clarity in relation to the new form management capabilities.
API Changelog: 2026-02-10
This update introduces a new status for document uploads, allowing for more granular tracking of a document's lifecycle. This is a non-breaking change.
Documents
- New
CANCELLEDstatus for document uploads TheDocumentStatusenum has been expanded with a newCANCELLEDvalue. This status will be returned in thestatusfield of theDocumenttype when a document upload has been cancelled by a user or the system. This provides more detailed information about the state of a document, in addition to the existing statuses:PENDING,IN_PROGRESS,SUCCESS, andFAILED. While this is a non-breaking change, we recommend updating your client to handle the newCANCELLEDenum value.
API Changelog: 2026-02-09
This update introduces a new mutation for generating alerts in sandbox environments, providing a way for developers to test their alert-handling logic. This is a non-breaking update.
New Features
- Generate sandbox alerts for testing
A new
sandboxAlertGeneratemutation has been added. This mutation allows you to programmatically trigger PEP or sanction alerts for any monitored company within your sandbox environment. It's designed to help you test and validate your application's response to different alert scenarios. You can specify the entity to alert on, the type of alert (PEPorSANCTION), and whether to add or remove a screening hit to trigger the alert. This feature is exclusively available in the sandbox environment.
API Changelog: 2026-02-06
This update introduces the ability to query user-defined custom risk fields on Company and PrivatePerson entities. This allows you to retrieve values for custom risk criteria, enhancing tailored risk assessments. All changes in this release are non-breaking.
New Features
-
Query Custom Risk Fields on Entities You can now retrieve the values for custom risk fields that have been configured and assigned to an entity. This is useful for integrating your organization's specific risk criteria into your applications.
- A new
customRiskFieldsfield has been added to theCompanyandPrivatePersontypes. - This field returns an array of
EntityCustomRiskFieldobjects. Each object contains theriskFielddefinition and theselectedOptionsfor that entity. - This change introduces several new supporting types:
EntityCustomRiskField: Associates a risk field and its selected options with an entity.CustomRiskField: Defines a custom risk field, including itsname,kind, and all possibleoptions.CustomRiskFieldKind: An enum that specifies if the field is aSINGLE_SELECTorMULTI_SELECT.CustomRiskFieldOption: Represents a possible option for a custom risk field.
- A new
API Changelog: 2026-01-19
This update introduces a comprehensive credit reporting feature. You can now order credit reports for companies and retrieve detailed credit score information directly through the API. This enhancement provides valuable financial insights, including credit ratings, payment remarks, and collateral summaries.
New Features
-
Added credit reporting for companies This update adds the ability to order and query credit reports for companies.
- You can now order a credit report for a company using the new
companyCreditReportOrdermutation. This mutation takes a company ID and returns aCreditReportPayloadcontaining the result. - The
Companytype now has acreditScorefield, which provides data from the most recently ordered credit report. This field will benullif no report has been ordered.
This feature is supported by several new types:
-
CreditReportPayload: The response object for thecompanyCreditReportOrdermutation. Contains:success: Whether the credit report was successfully ordered.company: The company for which the credit report was ordered.creditScore: The credit score data.
-
CreditScore: Contains detailed credit information:reportDate: The date when the credit report was ordered.rating: The international credit rating (A-E).ratingDescription: Description of the rating.creditRating: The numerical credit score/rating value.creditLimit: The company's credit limit.currencyCode: Currency code for monetary values in this report.hasPaymentRemarks: Whether the company has any payment remarks.remarks: Summary of unsettled payment remarks.partiallySettledRemarks: Summary of partially settled payment remarks.voluntaryCollateral: Summary of voluntary collateral.scoreUnavailableReason: Reason why the credit score is unavailable, if applicable. Only present when the company could not be scored.
-
CreditRating: An enum representing the international credit rating scale:A: Very Low Risk (score 71-100)B: Low Risk (score 51-70)C: Moderate Risk (score 30-50)D: High Risk (score 1-29)E: No Rating
-
PaymentRemarksSummary: Provides a summarized count and total amount for payment remarks. -
CollateralSummary: Provides a summarized count and total amount for voluntary collateral.
Example: Order a new credit report
mutation OrderCreditReport { companyCreditReportOrder(where: { id: "your-company-id" }) { success company { id name } creditScore { reportDate rating ratingDescription creditRating creditLimit currencyCode hasPaymentRemarks scoreUnavailableReason remarks { count totalAmount } partiallySettledRemarks { count totalAmount } voluntaryCollateral { count totalAmount } } } }Example: Query existing credit score for a company
query GetCompanyCreditScore { company(where: { id: "your-company-id" }) { name creditScore { reportDate creditLimit creditRating rating ratingDescription hasPaymentRemarks remarks { count totalAmount } partiallySettledRemarks { count totalAmount } voluntaryCollateral { count totalAmount } currencyCode scoreUnavailableReason } } } - You can now order a credit report for a company using the new
API Changelog: 2026-01-16
This update adds a new field to the Review object type. This enhancement allows for storing self-assessment notes from a review, providing additional context for due diligence and compliance records.
New Features
- New
selfAssessmentfield onReviewA new field,selfAssessment, of typeStringhas been added to theReviewobject. This field can be used to retrieve the self-assessment notes that were captured during the review process.
API Changelog: 2026-01-14
This update enhances our risk assessment capabilities by providing more context around how risk scores are calculated. We've introduced a new status to indicate when a score could not be determined due to missing data, and a corresponding INCONCLUSIVE risk level. These changes are non-breaking.
Risk Assessment
-
Added status field to
RiskScoreResultto clarify score calculation To provide more insight into risk calculations, we've added a newstatusfield to theRiskScoreResultobject. This field uses the newRiskScoreStatusenum to indicate whether a score was calculated successfully or if the necessary data was unavailable.This helps differentiate between a score of
0due to low risk (CALCULATED) and a score of0due to a lack of data (MISSING_DATA).The new
statusfield is available on all fields that return aRiskScoreResult, such asRiskCalculationResult.countryScoreandRiskCalculationResult.industryScore."Indicates whether data was present for a risk score calculation" enum RiskScoreStatus { "Data was present and the score was calculated normally" CALCULATED "No data was available for this risk category" MISSING_DATA } "A risk score with its matched values that contributed to the score" type RiskScoreResult { score: Int! matchedValues: [String!]! "Indicates whether data was present for calculation or if it was missing" status: RiskScoreStatus! } -
New
INCONCLUSIVEvalue added toRiskLevelKindenum We have added a newINCONCLUSIVEvalue to theRiskLevelKindenum. This new level is used when a final risk level cannot be determined because critical data required for the calculation is missing. Developers should update any client-side logic that consumes theRiskLevelKindenum to handle this new value.enum RiskLevelKind { # ... existing values "Inconclusive risk level - critical data is missing for risk calculation" INCONCLUSIVE }
API Changelog: 2026-01-13
This update enhances the automated risk calculation by introducing a new score component based on an entity's Relatives and Close Associates (RCAs). This change is non-breaking.
Additions
- Added RCA Count Score to Risk Calculation
The
RiskCalculationResulttype now includes thercaCountScorefield. This field provides a detailed risk score (of typeRiskScoreResult) based on the number of Relatives and Close Associates (RCAs) found for an entity, contributing to a more granular total risk assessment.
API Changelog: 2026-01-06
This update introduces a comprehensive suite of features for advanced risk management and entity lifecycle tracking. You can now perform and query detailed reviews for private persons, access both calculated and user-assessed risk levels, and track an entity's portfolio status. These changes affect the Company, PrivatePerson, and Review types, and introduce new queries for private person reviews. This is a non-breaking update.
Enhanced Risk and Review Management
-
New risk assessment fields for
CompanyandPrivatePersonWe have added several new fields to provide more granular risk information. TheautomatedRiskLevelfield onCompanyis now deprecated.calculatedRiskLevel: A new object onCompanythat provides a detailed breakdown of the automated risk calculation, including scores for country, industry, sanctions, and more. This field replaces the deprecatedautomatedRiskLevel.userAssessedRiskLevel: A new field on bothCompanyandPrivatePersonthat stores the risk level (e.g.,HIGH,MEDIUM,LOW) assigned by a user during a review.nextScheduledReviewDate: A new field on bothCompanyandPrivatePersonthat shows the date for the next periodic review, which is based on the risk assessed in the latest review.
-
Added reviews for
PrivatePersonYou can now create and retrieve reviews forPrivatePersonentities, mirroring the existing functionality for companies.PrivatePerson.reviews: A new field on thePrivatePersontype that returns a list of all completed reviews (PrivatePersonReview) for that person.Query.privatePersonReviewandQuery.privatePersonReviews: New root queries to fetch a singlePrivatePersonReviewby its ID or list all private person reviews within a specified date range.
-
Expanded
Reviewtype The existingReviewtype (for companies) has been enhanced to store more contextual data from the review process.calculatedRiskLevel: The calculated risk level at the time of the review.userAssessedRiskLevel: The user-assessed risk level that was set during the review.validUntilDate: The date until which the review is considered valid.
Entity Portfolio Status
- Track entity status in your portfolio
A new
entityPortfolioStatusInfofield has been added to both theCompanyandPrivatePersontypes. This allows you to track an entity's status within your internal workflow.- The
entityPortfolioStatusInfofield returns anEntityPortfolioStatusInfoobject, which contains the currentstatus(e.g.,PROSPECT,QUALIFIED,ACCOUNT), thepreviousStatus, and when it was lastmodifiedAt. - A corresponding
entityStatusfield has also been added to theReviewtype to capture the entity's portfolio status at the time the review was conducted.
- The
API Changelog: 2025-12-19
This release includes a documentation improvement to clarify the behavior of the country filter when searching for persons. There are no breaking changes.
Improvements
- Clarified behavior of
PersonSearchInput.countryThecountryfield on thePersonSearchInputobject now includes a description. This clarifies that the filter will be ignored if a developer provides a country code for a registry that is not supported by the API. This helps explain search results that might otherwise seem unexpected.
API Changelog: 2025-12-19
We've updated our API to support the new SNI 2025 industry classification standard. This is a non-breaking change that enhances our company data capabilities.
Improvements
- Added
SNI_2025toIndustryCodeTypeA new enum value,SNI_2025, has been added to theIndustryCodeTypeenum. This represents the upcoming Swedish Standard Industrial Classification for 2025. You may encounter this value in thecodeTypefield when querying for company industry information via theCompany.industriesV2field. As this is a non-breaking addition, existing integrations will not be affected, but we recommend updating clients to recognize this new value.
API Changelog: 2025-12-17
This update introduces a more robust and detailed way to handle entity addresses. We have added a new addresses field to all entity types, which provides a comprehensive list of addresses, each categorized by its type (e.g., postal, registered). The previous address field is now deprecated in favor of this new, more structured approach.
Improvements
-
Enhanced Address Information To provide more comprehensive and structured address data, we have introduced a new
addressesfield onCompany,BusinessPerson,CustomBusinessPerson, and theEntityLikeinterface.This new field returns a list of all available addresses for an entity. To help distinguish between them, we've also added:
- A new
addressKindfield to theAddresstype. - A new
AddressKindenum with possible values:POSTAL,REGISTERED,TRADING, andVISITING.
The existing
addressfield is now deprecated and will be removed in a future version. We recommend updating your integrations to use the newaddressesfield to access this richer data and ensure future compatibility. - A new
API Changelog: 2025-12-17
This update introduces enhancements to the EntityIdentifier type by adding a description field as well as a new UNKNOWN enum value to
EntityIdentifierKind.
New Features
-
Added
UNKNOWNemum value toEntityIdentifierKind. When the identifier cannot be determined to be of typePRIMARYorSECONDARYthe identifier kind will beUNKNOWN. -
Added
descriptionfield on typeEntityIdentifier. The description field provides additional details on the type of identifier.
API Changelog: 2025-12-16
This update introduces significant enhancements to our monitoring and alerts capabilities, providing more specific types and new filtering options. We've also improved the usability of adverse media screening fields. This release includes several breaking changes related to the alerts feature that require developer attention. The alert queries are still subject to change and breaking changes should still be expected.
Breaking Changes
-
Argument type for
Query.alertDatahas changed. Thealertargument on theQuery.alertDatafield now accepts a value of typeAlertId!instead ofID!. The newAlertIdscalar provides a more specific identifier for alerts, improving type safety. You must update your queries to use this new type. -
Type of
monitoredEntityfields changed toMonitoredEntityLike. ThemonitoredEntityfield on theAlertConnectionEdgeandMonitoringChangetypes has been updated fromEntityLike!to the new, more specificMonitoredEntityLike!interface. This change ensures that only entities that can be monitored are returned in this context.
New Features & Enhancements
-
Introduced
MonitoredEntityLikeinterface for better type safety. We've added a new interface,MonitoredEntityLike, to specifically represent entities that can be monitored. TheCompanyandPrivatePersontypes now implement this interface, distinguishing them from other entities in monitoring-related queries. -
Filter alerts by entity kind. The
alertsquery now accepts a newentityKindargument within theAlertsWhereInputobject. You can use this to filter alerts for a specific type of entity, such asCOMPANYorPRIVATE_PERSON, using the newEntityKindenum. -
Improved pagination for
amsfields. ThepageInfoargument onPrivatePerson.ams(and other fields implementingEntityLikeorMonitoredEntityLike) is now optional and includes a default value of{ size: 20, offset: 0 }. This simplifies querying for the first page of adverse media events as the argument is no longer required. We've also added more detailed descriptions to the field and its arguments to clarify its usage.
API Changelog: 2025-12-10
This update introduces two non-breaking changes to improve data modeling. We've added a new field to the Company type to identify reference-only records and a
new status to the DocumentStatus enum for better tracking of document uploads.
Features
-
New
isReferenceOnlyfield on Company A new boolean field,isReferenceOnly, has been added to theCompanytype. This field will betruefor company records that are created as a reference from another entity's relationship data (e.g., a shareholder from an unsupported country). These reference-only companies exist to complete the graph but have limited data available. You can use this flag to identify and handle these partial records appropriately in your application. -
New
IN_PROGRESSstatus forDocumentStatusTheDocumentStatusenum now includes the valueIN_PROGRESS. This new status indicates that a document upload has been initiated and is currently in the process of being uploaded. This provides more granular tracking between thePENDINGandSUCCESS/FAILEDstates.
API Changelog: 2025-12-09
This update introduces a new mutation for creating private persons, providing more control over the data enrichment process. As this is a non-breaking change, all existing integrations will continue to work without modification.
New Features
- New
privatePersonCreateNoEnrichmutation A new mutation,privatePersonCreateNoEnrich, has been added to create a private person entity. Unlike the existingprivatePersonCreatemutation, this new field does not automatically enrich the created person with data from external registries. It creates the person record using only the data you provide in thePrivatePersonCreateInput. This is useful when you have already verified the person's details, for example, by using theprivatePersonRegistrySearchquery, and want to create an entity with that exact data.
API Changelog: 2025-12-08
Improvements to the privatePersonSearch query
- Added a new
hasNinfield to thePersonSearchInputquery input that can be used to filter private persons that does or does not have a nin (national identification number). - Added pagination information in the search response,
PageInfo, making it easier for the client to go through all the pages matching the query. - Order results by name ascending
API Changelog: 2025-12-05
This update introduces a new query, privatePersonRegistrySearch, allowing you to look up private individuals directly in official national registries. This
provides a way to find and verify person data using a combination of identifiers before creating them in Strise.
New Features
-
New
privatePersonRegistrySearchqueryThe query uses the new
PersonRegistrySearchInputtype, which requiresnameandcountry, and accepts optional fields likenin(national identifier number),birthDate, and address details to refine the search. You must provide Name combined with one of the following: National ID Number, Birth Date, or an Address (requires Street Name with either Zip Code or House Number) to get a result.A successful search returns a
ConnectPrivatePersonRegistrySearchResourceobject containing the person's details from the registry, such as their name, birth date, address, and official identifier.Example Query:
query FindPersonInRegistry { privatePersonRegistrySearch( where: { name: "John Doe", country: "NO", birthDate: "1990-01-15" } ) { name birthDate address { addressLine city zipCode } identifier { value kind } } }
API Changelog: 2025-11-28
This update expands our Adverse Media Screening (AMS) capabilities by incorporating a new data source. This change is non-breaking, but you may want to update your client to handle the new event kind.
Additions
- New Adverse Media Source: Dow Jones
The
AmsEventKindenum, which specifies the origin of an adverse media event, now includes the valueDOW_JONES. When querying for adverse media via theamsfield on an entity, you may now receiveAmsEventobjects where theeventKindfield isDOW_JONES.
API Changelog: 2025-11-27
Listing tags is now available for companies and private persons
New Features
- Added
tagsfield toCompanyandPrivatePersontypes. This enables you to query for a list of tags added to these resources
API Changelog: 2025-11-05
New Features
-
Added
shareholdersandholdingsfields toCompany, andholdingstoBusinessPersonNew fields to retrieve shareholder and holding information for companies have been added. These fields return lists ofOwnershipobjects, providing details about the direct shareholders and holdings of a company.In each
Ownershipobject, you can find:entity: TheCompanyorBusinessPersonthat is the shareholder, orCompanythat is being held.totalSharePercentage: The total direct share percentage held by/in the entity.shareClasses: A list that contains information about the share class and the share percentage held.editMetadata: Metadata about potential edits that have been done to the item.
-
Added
beneficialOwnersfield toCompany, andbeneficialOwnershipsfield toBusinessPersonThese fields contain information about a company's beneficial owners and a business person's beneficial ownerships, respectively. They return lists ofBeneficialOwnershipobjects, which include:entity: TheCompanyorBusinessPersonthat is the beneficial owner/owned entity.reasons: A list of reason enum values explaining why the entity is considered a beneficial owner.editMetadata: Metadata about potential edits that have been done to the item.
For all these fields, you can use the ignoreEdits parameter to see the original, unedited data.
API Changelog: 2025-11-03
We've introduced a new way to retrieve information about corporate roles. You can now query for the roles held by a specific BusinessPerson or see all the
roles associated with a Company. This is a non-breaking feature addition.
New Features
-
Added
rolesfield toCompanyandBusinessPersontypes A newrolesfield is now available on theCompanyandBusinessPersontypes. This enables you to query for corporate role information, such as finding the CEO of a company or listing a person's board positions.This change introduces two new types:
RoleandRolePeriod.- The
rolesfield returns a list ofRoleobjects. EachRoleincludes theroleTitle, anisActiveflag, the associatedentity(the person or company), and aperiodobject. - The
RolePeriodobject specifies thefromandtodates for the role's tenure. - You can use the
includePrevious: trueargument to fetch historical roles in addition to current ones.
- The
API Changelog: 2025-10-29
This update introduces a new capability to send customer-facing forms directly via the API. You can now trigger a form to be sent to a specific recipient's email and associate it with a company in your system. This is useful for processes like customer onboarding or information gathering.
Features
-
Added ability to send customer-facing forms A new
sendFormmutation is now available. It allows you to programmatically send a predefined customer-facing form to an email recipient.To use this mutation, provide the
companyId, theformIdof the form you wish to send, and the recipient's details in theSendFormInput. Upon success, the API will return aSendFormPayloadcontainingsuccess: trueand the uniqueformInstanceIdfor the form that was sent.This change introduces the following new types and fields:
- Mutation:
sendForm(where: SendFormInput!): SendFormPayload! - Input Type:
SendFormInput, which requirescompanyId,formId,recipientEmail, andrecipientName. - Payload Type:
SendFormPayload, which returns asuccessboolean and the newformInstanceId. - Scalar IDs:
CustomerFacingFormIdto identify the form template, andFormInstanceIdto identify the specific instance that was sent.
- Mutation:
API Changelog: 2025-10-21
This update introduces a more structured way to access company industry codes. We have deprecated the industries field on the Company type and replaced it
with the new industriesV2 field. This is a non-breaking change, but we encourage all developers to migrate to the new field to take advantage of the richer
data.
Improvements
-
Company.industriesfield deprecated in favor ofindustriesV2Theindustriesfield on theCompanytype is now deprecated and will be removed in a future API version. This field returned a simple list of strings representing industry codes.To provide more detailed information, we have introduced the new
industriesV2field. This field returns a list ofConnectIndustryCodeobjects, each containing the industrycode, itsdescription, and thecodeType(e.g., NACE, SIC).We recommend updating your queries to use
industriesV2to access this more structured and informative data.
API Changelog: 2025-10-16
This update improves how you access Adverse Media Screening (AMS) data. We are deprecating the amsCount field on all relevant entities and introducing a more
powerful ams field. This change allows you to retrieve detailed information about media events instead of just an approximate total count. This is a
non-breaking change, but we encourage you to migrate to the new field.
Adverse Media Screening
-
Deprecated
amsCountin favor of newamsfield TheamsCountinteger field is now deprecated on theEntityLikeinterface and its implementing types:Company,BusinessPerson, andCustomBusinessPerson. It will be removed in a future release.We have introduced a new
amsfield which returns a paginated list ofAmsEventobjects. This provides rich details for each adverse media article, such as the title, summary, publisher, and publication date. The new field provides more accurate and detailed results.Please note that the number returned by the deprecated
amsCountmay differ from the number of events returned by the newamsfield due to improvements in our screening and event clustering logic.Action Required: Please update your integrations to use the
amsfield to fetch detailed adverse media events.# DEPRECATED query GetAmsCount($id: CompanyId!) { company(where: {id: $id}) { amsCount } } # RECOMMENDED query GetAmsEvents($id: CompanyId!) { company(where: {id: $id}) { # Query for the list of events ams(pageInfo: {size: 10, offset: 0}) { id title published summary } } }
API Changelog: 2025-10-14
This update expands our data coverage by introducing new legal form types for companies registered in Finland. This is a non-breaking change that allows for more precise classification of Finnish entities.
Improvements
-
Added new legal forms for Finland We have added 21 new values to the
LegalFormKindenum to support a wider range of company legal forms in Finland. This change enhances our data coverage for Finnish entities, enabling more accurate classification when using thecustomCompanyCreateandcustomCompanyUpdatemutations.While this is a non-breaking change, we recommend updating any client-side logic that handles
LegalFormKindto recognize these new values.The new values added are:
FI_ASH: Resident-administered areaFI_ASY: Right-of-occupancy associationyFI_AYH: Non-profit associationFI_ETS: Finnish branch of a European economic interest groupingFI_HY: Mortgage SocietyFI_KOY: Limited liability joint-stock property companyFI_KVJ: Public mutual insurance companyFI_OP: Co-operative bankFI_OSK: Housing co-perativeFI_OYJ: Public Limited CompanyFI_SCE: European co-operative societyFI_SCP: European co-operative bankFI_SE: European CompanyFI_SL: Branch of a foreign traderFI_SP: Savings bankFI_TYH: Association for carrying on economic activityFI_UNKNOWN: UnknownFI_VALTLL: State-owned companyFI_VOJ: Public limited insurance companyFI_VOY: Limited insurance companyFI_VY: Insurance association
API Changelog: 2025-10-02
This update introduces new fields to the Company type, providing more detailed information on a company's operational status and employee count. These
additions are non-breaking.
New Features
- Added company status and employee count information
We've enriched the
Companytype with two new fields to provide more context about a business:- The new
statusfield returns aConnectCompanyStatusobject, which describes the company's operational status (e.g., "Active", "Dissolved"), the date the status was set, and anisActiveboolean flag. - The new
numberOfEmployeesfield returns anEmployeeCountIntervalobject. This provides afromandtointeger value, representing the employee count as a range.
- The new
API Changelog: 2025-09-29
This update expands our support for German company data by introducing a new legal form. This is a non-breaking change.
Enhancements
- Added new legal form for German entities
We have added a new value,
DE_RV, to theLegalFormKindenum. This value represents a "State-conferred Association" (Rechtsfähiger Verein), a type of legal entity in Germany. This change improves our data coverage for German companies.
API Changelog: 2025-09-25
This update introduces enhancements to our review functionality, making it easier to track and retrieve reviews. You can now fetch all reviews for a specific company and see exactly when a review was created. Additionally, it introduces a new way to classify entity identifiers, allowing you to distinguish between primary and secondary identifiers for companies and people. This provides more context and helps in programmatically selecting the most relevant identifier for an entity. There are no breaking changes in this release.
Enhancements
-
Retrieve reviews for a company A new
reviewsfield has been added to theCompanytype. This allows you to directly query all reviews that have been created for a specific company, returning a list ofReviewobjects. -
Added creation timestamp to reviews The
Reviewtype now includes acreatedAtfield. This field provides aDateTimetimestamp for when the review was generated, which is useful for auditing and sorting purposes. -
Added
kindtoEntityIdentifierto classify identifiers We've added a newkindfield to theEntityIdentifiertype. This field helps categorize an entity's identifiers, making it easier to determine their purpose. Thekindfield is non-nullable and returns a value from the newEntityIdentifierKindenum:PRIMARY: A primary, official identifier for the entity (e.g., a national organization number).SECONDARY: A secondary identifier for the entity.
You can now use this field to reliably select the primary identifier for an entity instead of relying on heuristics.
Example Query:
query GetCompanyIdentifiers($id: CompanyId!) { company(where: { id: $id }) { name identifiers { value country kind # New field } } }
API Changelog: 2025-09-24
This update introduces a significant new feature for visualizing and analyzing company ownership structures. You can now query the new shareholderGraph field
on the Company type to retrieve a graph of its owners, including indirect ownership and beneficial owner information. This is a non-breaking change.
Features
-
Introduced Shareholder Graph for Company Ownership A new
shareholderGraphfield has been added to theCompanytype, allowing you to traverse and analyze complex ownership structures.The field returns a
ShareholderGraphobject, which consists ofnodes(the entities) andedges(the ownership links).- Nodes (
ShareholderGraphNode): Represent companies or individuals in the ownership chain. Each node includes the entity's details, their calculatedindirectSharePercentagein the root company, and whether they qualify as aisBeneficialOwner. - Edges (
ShareholderGraphEdge): Represent the direct ownership percentage between two nodes in the graph. - To accommodate data from various sources where ownership is expressed as a range (e.g., 25-50%), ownership percentages are now represented by the
SharePercentageIntervaltype, which providesfromandtovalues. - You can control the granularity of the graph by using the
minimumSharePercentageargument on theshareholderGraphfield to filter out smaller shareholders. Refer to the documentation on this parameter to learn more about how it works. Example query:
query CompanyOwnershipGraph { company(where: {id: "company-id"}) { name shareholderGraph(minimumSharePercentage: 10.0) { rootId nodes { id entity { name } isBeneficialOwner shareClasses { shareClass sharePercentage { from to } } indirectSharePercentage { from to } } edges { parent child sharePercentage { from to } } } } } - Nodes (
## API Changelog: 2025-09-23
Today's update introduces several enhancements to provide more context for Adverse Media Screening (AMS) events. We've also added a new country relationship
type and improved the flexibility of creating and updating custom companies by making the `shareholders` field optional.
### Enhancements
* **Added More Context to Adverse Media Events**
We've added several new fields to the `AmsEvent` type to give you a clearer understanding of each media article.
* `eventKind: AmsEventKind!`: Identifies the source of the event. The new `AmsEventKind` enum can be `GEMINI`, `OPOINT`, or `USER_CREATED`.
* `createdBy: SimpleUser`: Specifies which user created the event, if applicable. This introduces the new `SimpleUser` and `UserAccountKind` types to
represent user information.
* `behindPaywall: Boolean!`: A new boolean flag that indicates if the article content is behind a paywall.
* **New `REGISTER` Value for Country Relationship**
The `CountryRelationship` enum now includes `REGISTER` as a new value.
For `BusinessPerson`s, person register countries are now classified as Register instead of Address. Residency, nationality, and citizenship data is included
when available.
For `Company`, register countries are moved to the new Register kind while other countries are set to Address. These changes are non-breaking but will result
in country type changes for most entities.
### Improvements
* **`shareholders` Field is Now Optional for Custom Companies**
The `shareholders` field on the `CustomCompanyCreateInput` and `CustomCompanyUpdateInput` types is no longer a required list. You can now omit this field
entirely when creating or updating a company that has no shareholders, whereas previously an empty array (`[]`) was required.
## API Changelog: 2025-09
This month's update introduces more structured data for adverse media events and clarifies date ranges for Politically Exposed Person (PEP) roles. We've added
new fields to the `AmsEvent` and `PepRole` types and deprecated their older counterparts to provide a more robust and intuitive API experience. There are no
breaking changes.
### Adverse Media Screening
* **Richer Data for Clustered Media Events**
The `AmsEvent` type now includes a `clusteredEvents` field, which returns a list of the new `ClusteredEvent` type. Each `ClusteredEvent` object contains an
`id` and a `url`, providing a more structured way to access articles belonging to the same news cluster.
The previous `clusteredUrls` field, which returned a simple list of URL strings, is now **deprecated**. Please update your integrations to use the new
`clusteredEvents` field for more detailed information.
* **New `isCustom` Field on `AmsEvent`**
A new boolean field, `isCustom`, has been added to the `AmsEvent` type. This field allows you to easily identify whether an adverse media event was added
manually by a user or discovered automatically by our system.
### Politically Exposed Persons (PEP)
* **Clearer Date Ranges for PEP Roles**
To better represent the duration of a politically exposed person's role, we have added `startDate` and `endDate` fields to the `PepRole` type.
The existing `since` field is now **deprecated** in favor of `startDate`. We recommend updating your queries to use these new, more explicit fields.
## API Changelog: 2025-08
This month's update introduces a significant breaking change to how custom company shareholders are managed, splitting them into distinct fields for persons and
companies. We've also added a new, more structured way to query for industry codes on companies and included external source URLs for PEP (Politically Exposed
Person) data to improve traceability.
### Breaking Changes
* **New required shareholder fields for custom companies**
The `customCompanyCreate` and `customCompanyUpdate` mutations now require you to specify shareholders in two new distinct, non-nullable fields:
`personShareholders` for individuals and `companyShareholders` for other companies. This change provides a clearer and more structured way to define the
ownership of a custom company. Any integrations using these mutations must be updated to provide these new fields.
**Affected Mutations:**
* `customCompanyCreate(where: CustomCompanyCreateInput!)`
* `customCompanyUpdate(where: CustomCompanyUpdateInput!)`
**New Required Fields:**
* `personShareholders: [BusinessPersonOwnershipInput!]!`
* `companyShareholders: [CompanyOwnershipInput!]!`
### Features
* **Added structured industry codes for companies**
You can now query for detailed industry codes on the `Company` type using the new `industriesV2` field. This field returns a list of `ConnectIndustryCode`
objects, each containing the `code`, its `description`, and the `codeType` (e.g., `SNI_2007`, `SIC_2007`) from the new `IndustryCodeType` enum. This provides
a more structured alternative to the existing `industries` field, which returns a simple list of strings.
* **Added external source URLs for PEP data**
To improve data traceability, we've added a new `externalUrls: [String!]!` field to the `PepHit` and `PepRelation` types. This field provides a list of URLs
pointing to the original sources for the Politically Exposed Person (PEP) information.
* **Added clustered URLs to adverse media events**
The `AmsEvent` type now includes a `clusteredUrls: [String!]!` field. This returns a list of URLs for articles that have been identified as reporting on the
same media event, helping you consolidate related news coverage.
## API Changelog: 2025-07
This month's update introduces two major features. You can now create, update, and delete your own custom company and person entities directly via the API. We
have also added a powerful new automated risk calculation feature for companies, providing a detailed breakdown of their computed risk level.
### New Features
* **Manage Custom Company and Person Entities**
You can now create, update, and delete custom company and person entities that are not available in public registries. This is useful for managing entities in
jurisdictions we don't cover or for creating special-purpose entities. This functionality is supported by a set of new mutations and their corresponding input
and payload types.
* New mutations: `customCompanyCreate`, `customCompanyUpdate`, `customCompanyDelete`, `customPersonCreate`, `customPersonEdit`, `customPersonDelete`.
* New supporting types: `CustomCompanyCreateInput`, `CustomCompanyUpdateInput`, `CustomPersonCreateInput`, `CustomPersonEditInput`, `CustomCompanyPayload`,
`CustomPersonPayload`, `ConnectPartialDateInput`, `LegalFormKind`.
* **Automated Risk Calculation for Companies**
The `Company` type now features a new `automatedRiskLevel` field. This field returns a `RiskCalculationResult` object containing the company's calculated risk
level, total score, and a detailed breakdown of scores from various risk factors like country, industry, and PEP/sanction screenings.
* New field: `Company.automatedRiskLevel`.
* New supporting types: `RiskCalculationResult`, `RiskScoreResult`, `CustomRiskFieldScore`, `RiskLevelSetting`, `RiskLevelKind`.
### Field Additions
* **Added `entityId` to `AmsEvent`**
The `AmsEvent` type now includes an `entityId` field. This provides a direct reference to the ID of the company or person the adverse media event is
associated with, simplifying data retrieval and linking events back to their source entity.
## API Changelog: 2025-06
This month's update introduces enhancements to our Adverse Media Screening (AMS) capabilities. We've added a new field to the `AmsEvent` type to provide more
detailed context about the topics detected in media articles, allowing for more precise analysis. These changes are non-breaking.
### Adverse Media Screening
* **Added `topicMentions` to `AmsEvent` for detailed topic analysis**
We've introduced the `topicMentions` field to the `AmsEvent` type. This field returns a list of the new `AmsTopicMentions` type, which groups specific text
mentions from an article under their relevant topic. While the existing `topics` field provides a simple list of topic strings, `topicMentions` offers a
structured way to see exactly which phrases in the text are associated with each identified topic, providing deeper context.
## API Changelog: 2025-05
This month's update introduces a significant refactoring of how adverse media topics are represented, a new mutation for editing business person details, and an
enhancement to sanction filtering. Please note the **breaking change** related to the `AmsEvent` type, which requires an update to any queries fetching topic
data.
### 💥 Breaking Changes
* **Refactored Adverse Media Topics from `topicMentions` to `topics`**
The field `topicMentions` and its associated type `TopicMention` have been removed from `AmsEvent`. This has been replaced by a simpler `topics` field that
returns a list of strings. This change simplifies the data structure for easier consumption.
**Action Required:** Any queries fetching `topicMentions` must be updated to use the new `topics` field.
*Before:*
```graphql
query GetAmsEventTopics {
company(where: {id: "..."}) {
ams {
topicMentions {
text
}
}
}
}After:
query GetAmsEventTopics {
company(where: {id: "..."}) {
ams {
topics
}
}
}✨ New Features
-
Added Mutation to Edit Business Persons A new
editPersonmutation has been added, allowing you to modify the details of aBusinessPerson. This mutation uses the newBusinessPersonEditInputtype to specify the person's ID and the fields to be updated (e.g.,birthDate), and returns aBusinessPersonPayload. -
New Filtering Option for Sanctions The
SanctionInfo.sanctionsfield now accepts an optionalincludeSuggestedFalseargument. When set totrue, the query will also return sanctions that have been suggested as false matches but not yet confirmed. The default value isfalse, so existing integrations are not affected.
📈 Improvements & Fixes
-
Clarified
CountryCodeBehavior The description for theCountryCodescalar has been updated to clarify that providing an empty string will be handled as anullvalue. -
Improved Field Descriptions Documentation for the
amsfield onBusinessPerson,Company,CustomBusinessPerson, andEntityLikehas been standardized and improved for clarity.
API Changelog: 2025-04
This month's update introduces a major enhancement to our Adverse Media Screening (AMS) capabilities. You can now retrieve detailed information about media articles related to an entity, including sentiment analysis and named entity recognition. Additionally, we've improved our PEP screening data by adding aliases to PEP records. All changes are non-breaking.
Adverse Media Screening
-
New
amsfield for detailed media screening results A newamsfield has been added to theEntityLikeinterface, making it available onCompany,BusinessPerson, andCustomBusinessPersontypes. This field provides access to detailed adverse media articles and is intended to replace the existingamsCountfield, which will be deprecated in a future release.The
amsfield returns a paginated list ofAmsEventobjects. EachAmsEventrepresents a single news article and contains rich data, including:entityMentions: Specific mentions of people or companies within the text.amsPredictions: Sentiment analysis results (e.g.,NEGATIVE,NEUTRAL) with confidence scores.topicMentions: Key topics discussed in the article.
This change introduces several new supporting types:
AmsEvent,AmsEntityMention,AmsPrediction,AmsClassificationKind,TopicMention,NamedEntityKind,TextSpan, and theISODateTimescalar.
PEP Screening
- Added aliases to PEP records
The
PepHittype now includes a newaliasesfield. This field returns a list of alternative names associated with the Politically Exposed Person, improving the ability to confirm a match.
API Changelog: 2025-03
This month's update focuses on enriching the data available for Politically Exposed Person (PEP) screenings. We've introduced several new fields to the PepHit
type to provide more comprehensive details on potential matches. Additionally, we've added support for custom sanction sources and improved the clarity of our
documentation for the Review type.
New Features
-
Enhanced
PepHitType for Richer PEP Data To provide more detailed information on Politically Exposed Person (PEP) matches, thePepHittype has been expanded with several new fields:name: String: The full name of the matched person.dateOfBirth: PartialDate!: The date of birth of the matched person. This uses the newPartialDatetype, which can represent incomplete dates (e.g., just a year and month).countries: [Country!]!: A list of countries associated with the person.
-
New
CUSTOMSanction Source TheSanctionSourceenum now includes theCUSTOMvalue. This is used to identify sanctions that have been manually added by users within your organization, distinguishing them from official list sources like OFAC or the EU.
Improvements
- Improved
ReviewField Descriptions To improve clarity and provide better guidance, we've added detailed descriptions to the following fields on theReviewtype:id: Now explicitly described as "The id of the review."pdf: The description now clarifies that this field provides the review as a base64 encoded PDF and explains that it is generated asynchronously. As a result, the field may benullif the PDF is not yet ready.
API Changelog: 2025-02
This month's update includes one breaking change with the removal of the Subscription type. We've also introduced new fields to support sanction match
verification and a new review trigger for risk level changes. Additionally, we have clarified the descriptions for several fields related to the PEP/RCA
verification feature to make their behavior more explicit.
💥 Breaking Changes
- Removal of
SubscriptionType The rootSubscriptiontype has been removed from the API. Any operations that relied on this type are no longer supported and will result in a validation error. Please remove any usage ofSubscriptionfrom your client integrations.
✨ New Features
-
Verify Sanction Matches The
Sanctiontype now includes aconfirmedMatch: Booleanfield. This field allows you to see a user's verification status for a specific sanction match. It will returntrueorfalseif verified, andnullif the match has not yet been reviewed. Note that this field will only return data for users who have access to the sanction verification feature. -
New Review Trigger for Risk Level Changes A new enum value,
RISK_LEVEL_VALUE, has been added toReviewTriggerStatementKind. This allows you to identify review triggers that were initiated due to a change in an entity's risk level.
改善 Improvements
- Clarified Behavior for PEP/RCA Verification Fields
The descriptions for several fields and arguments related to PEP/RCA data have been updated to clarify that their functionality is dependent on a user having
access to the PEP/RCA verification feature. This makes the expected behavior more predictable for all users. The affected fields are:
PepHit.confirmedMatchPepHit.customPepInfo.confirmedPepStatusPepInfo.confirmedRcaStatus- The
includeSuggestedFalseargument onPepInfo.hits
API Changelog: 2025-01
This month's update introduces a significant enhancement to how Politically Exposed Person (PEP) data is structured, providing more granular and verifiable
information. We've also added more detailed fields for sanctions data and made other quality-of-life improvements across the API. While there are no breaking
changes, we have deprecated several fields on PepInfo and encourage you to update your integrations.
Enhanced PEP & Sanction Details
-
Richer PEP/RCA Data with
PepHitType We've refactored how PEP and RCA (Relatives and Close Associates) data is exposed to provide more detailed records. ThePepInfoobject now contains ahitsfield that returns a list of the newPepHittype. EachPepHitrepresents a distinct data source match for an individual, allowing you to see multiple PEP roles or RCA relationships separately.As part of this change, the
rolesandrelationsfields onPepInfoare now deprecated. Please update your integration to use therolesandrelationsfields inside eachPepHitobject instead.Additionally,
PepInfonow includesconfirmedPepStatusandconfirmedRcaStatusfields to reflect any manual verification performed by users. -
Additional Sanction Information The
Sanctiontype has been enriched with more contextual data. You can now retrieve the following new fields:sanctionedSince: The date the sanction was applied.program: The specific sanction program the entity is listed under.sourceUrl: A direct URL to the sanction data from the source.
-
PEP Role Start Date The
PepRoletype now includes asincefield, which provides the date the person assumed that specific role.
General API Improvements
-
Related Entities in Company Review Triggers The
CompanyReviewTriggerEventobject now includes arelationsfield. This field returns a list of related entities that are relevant to the event, giving you more context about what caused the review to be triggered. -
More Flexible Private Person Search The
countryfield in thePrivatePersonIdentifierSearchInputis no longer a required field. This allows you to search for a person by an official identifier without needing to specify their country.
API Changelog: 2024-12
This month's update enhances the information available for Politically Exposed Persons (PEPs). We've added a new field to provide more specific details about a PEP's role, allowing for more comprehensive screening. This change is non-breaking and adds new functionality without affecting existing queries.
Enhancements
- Added
detailsfield toPepRoleA newdetailsfield of typeStringhas been added to thePepRoleobject. This field provides further context about a person's role, supplementing the existingdescription. For example, while thedescriptionmight be "Member of Parliament," the newdetailsfield could specify the constituency or term dates, offering more granular information for your compliance processes.
API Changelog: 2024-11
This month's update introduces a powerful new Risk Signals feature, allowing you to identify and understand potential risks associated with entities more effectively. We've also added several documentation improvements across the schema to enhance clarity and developer experience.
New Features
- Introducing Risk Signals
We've added a new
riskSignalsfield to theCompany,BusinessPerson,PrivatePerson,CustomBusinessPersontypes, and theEntityLikeinterface. This field provides structured information about potential risks associated with an entity. To support this, we've introduced several new types:RiskSignals: The top-level object containing a list ofRiskSignals.RiskSignal: Represents a specific risk that has been identified.RiskFactor: A specific data point that contributes to aRiskSignal, including information about when it occurred and the path to the risk.PathConnectionandPathConnectionEdge: New types used withinRiskFactorto describe the path of relationships from the queried entity to the source of the risk.
Schema Improvements
- Added Descriptions for Clarity
To improve developer experience and inline documentation, we've added descriptions to several existing types and input fields:
EntityConnection: Description added to clarify how it represents entity relationships.PersonSearchInput.gender: Clarifies the purpose of the gender filter.PrivatePersonIdentifierSearchInput.identifiers: Specifies that this field is for the identifiers being searched.SizePageInfoInput.offsetandSizePageInfoInput.size: Descriptions added to clarify their use in pagination.
API Changelog: 2024-10
There were no changes to the GraphQL API in October 2024.
API Changelog: 2024-09
This month's update introduces significant enhancements to our Politically Exposed Person (PEP) and Sanctions data, providing more detailed and structured
information. We've also added a new query to retrieve review reports. As part of these changes, several boolean fields have been deprecated in favor of richer
object types, and the privatePersonUpdate mutation has been made more flexible.
New Features
-
Enhanced PEP and Sanctions Information We've replaced the simple
pepandsanctionedboolean fields with new, more detailed object types:pepInfoandsanctionInfo. These new fields provide structured data, such as the specific sanctions an entity is listed on, the sanctioning body, and the specific roles that qualify a person as a PEP. This change affects theBusinessPerson,Company,CustomBusinessPerson, andPrivatePersontypes.The following new types have been added to support this feature:
PepInfo,PepRole,PepRelationSanctionInfo,Sanction,SanctionSource
-
New Query for Retrieving Reviews You can now fetch a completed review directly using the new
reviewroot query field. This query accepts a review ID and returns theReviewobject, which includes apdffield containing the Base64 encoded review report. A newBase64EncodedFilescalar has been added for this purpose.
Deprecations
- Deprecated
pepandsanctionedFields Thepepandsanctionedboolean fields onBusinessPerson,Company,CustomBusinessPerson,PrivatePerson, and theEntityLikeinterface are now deprecated. Please update your integrations to use the newpepInfoandsanctionInfofields to access richer data and ensure future compatibility.- Use
pepInfoinstead ofpep. - Use
sanctionInfoinstead ofsanctioned.
- Use
Improvements
-
More Flexible
privatePersonUpdateMutation TheprivatePersonUpdatemutation is now more flexible. Thename,nin,country, andaddressfields in thePrivatePersonUpdateInputare no longer required. This allows you to perform partial updates on aPrivatePersonwithout resubmitting all of their existing details. -
Clarified
amsCountDescription The description for theamsCountfield onBusinessPerson,Company,CustomBusinessPerson,PrivatePerson, andEntityLikehas been updated to clarify that the count is an approximation. The new description is: "This is an approximation and the actual number may be lower, but never higher."