Strise Connect API Docs
TypesInterfaces

EntityLike

An interface type of external business entities. Either a company or a business person.

interface EntityLike {
  name: String!
  address: [Address!]! @deprecated
  addresses: [Address!]!
  countries: [CountryContext!]!
  identifiers: [EntityIdentifier!]!
  relationships(
    kind: [EntityRelationshipKind!]!
    preferCustomRelations: Boolean! = false
  ): EntityConnection!
  sanctioned: Boolean! @deprecated
  sanctionInfo: SanctionInfo!
  amsCount: Int! @deprecated
  ams(
    pageInfo: SizePageInfoInput = { size: 20, offset: 0 }
  ): [AmsEvent!]!
  flags: [FlagKind!]!
  riskSignals: RiskSignals!
}

Fields

name String! non-null scalar

String! Entity name.

address [Address!]! deprecated non-null object

[Address!]!

DEPRECATED

Use the addresses field instead for a complete list of available addresses.

The postal address of the Entity.

addresses [Address!]! non-null object

[Address!]! The available addresses of the entity.

countries [CountryContext!]! non-null object

[CountryContext!]! The countries for the Entity.

identifiers [EntityIdentifier!]! non-null object

[EntityIdentifier!]! The official identifiers for this Entity. Since an Entity can have several ids (even within the same country), this is a list.

relationships EntityConnection! non-null object

EntityConnection! Related entities (e.g. persons, companies) for this entity. Can be UBOs, board members, etc.

kind [EntityRelationshipKind!]! non-null enum

[EntityRelationshipKind!]! The type of relationships to fetch. If not specified, all relationships will be fetched. Providing an empty list will return all relationship

preferCustomRelations Boolean! non-null scalar

Boolean! Whether or not to prefer custom relations. If true, only custom relations are returned if any exists. Otherwise, officially registered relations are returned

sanctioned Boolean! deprecated non-null scalar

Boolean!

DEPRECATED

Use the sanctionInfo field instead

Whether this entity is sanctioned.

sanctionInfo SanctionInfo! non-null object

SanctionInfo! Sanction information related to this entity.

amsCount Int! deprecated non-null scalar

Int!

DEPRECATED

Use the ams field instead

Number of adverse media articles found for this entity. This is an approximation and the actual number may be differ due to clustering of events not performed here.

ams [AmsEvent!]! non-null object

[AmsEvent!]! Adverse media articles found for this entity. This field replaces the amsCount field, which will eventually be deprecated. The amsCount field might differ from the actual number returned here, due to different screening solutions being used.

pageInfo SizePageInfoInput input

SizePageInfoInput Used for pagination. Media articles are sorted by the highest relevance first.

flags [FlagKind!]! non-null enum

[FlagKind!]! Flagged events found for this entity.

riskSignals RiskSignals! non-null object

RiskSignals! Risk signals. Currently there is only one possible risk signal, 'flags', which is created if we find flags of negative severity.

Member Of

BeneficialOwner object EntityConnectionEdge object Ownership object PathConnectionEdge object PepChange object Role object SanctionChange object ShareholderGraphNode object

Implemented By

BusinessPerson object Company object CustomBusinessPerson object

On this page