Strise Connect API Docs
Queries

privatePersonRegistrySearch

Find a specific private person in official registries by a combination of identifiers.

query PrivatePersonRegistrySearch($where: PersonRegistrySearchInput!) {
  privatePersonRegistrySearch(where: $where) {
    identifier {
      value
      country
      kind
      description
    }
    name
    gender
    birthDate
    birthYear
    address {
      country {
        code
        name
      }
      addressLine
      city
      zipCode
      addressKind
    }
    citizenship {
      code
      name
    }
  }
}
input PersonRegistrySearchInput {
  name: String!
  nin: String
  birthDate: Date
  zipCode: String
  streetName: String
  houseNumber: String
  country: CountryCode!
}

Arguments

where PersonRegistrySearchInput! non-null input

PersonRegistrySearchInput!

Type

ConnectPrivatePersonRegistrySearchResource object

ConnectPrivatePersonRegistrySearchResource A private person search result from a registry.

Response Fields

identifier EntityIdentifier object

EntityIdentifier

name String! non-null scalar

String! Person name.

gender Gender enum

Gender The gender of the person.

birthDate Date scalar

Date The birth date of the person.

birthYear Year scalar

Year The birth year of the person.

address [Address!]! non-null object

[Address!]!

citizenship [Country!]! non-null object

[Country!]!

On this page