The Ownership Match object 

Financial Connections
Ownership Match
The Ownership Match object

Attributes

  • idstring

    Unique identifier for the object.

  • objectstring

    String representing the object’s type. Objects of the same type share the same value.

  • createdtimestamp

    Time at which the object was created. Measured in seconds since the Unix epoch.

  • customernullable string

    The id of the customer that was matched against.

  • financial_connections_accountstring

    The id of the Financial Connections account which was requested to match against.

  • owner_informationobject

    The owner information that was matched against.

    • owner_information.addressnullable object

      The address of the owner.

      • owner_information.address.citystring

        The city of the address.

      • owner_information.address.countrystring

        The country of the address.

      • owner_information.address.line1string

        The first line of the address.

      • owner_information.address.line2nullable string

        The second line of the address.

      • owner_information.address.postal_codestring

        The postal code of the address.

      • owner_information.address.statestring

        The state of the address.

    • owner_information.emailnullable string

      The email address of the owner.

    • owner_information.namenullable string

      The full name of the owner.

    • owner_information.phonenullable string

      The phone number of the owner.

  • ownershipstring

    The id of the ownership that was matched against.

  • resultsobject

    The computed match scores for each ownership field.

    • results.addressnullable object

      The match result for address.

      • results.address.match_scorenullable integer

        Match score in a 0-100 range. Only null if ownership data is missing.

      • results.address.missing_datanullable boolean

        Whether ownership data is missing.

    • results.emailnullable object

      The match result for email.

      • results.email.match_scorenullable integer

        Match score in a 0-100 range. Only null if ownership data is missing.

      • results.email.missing_datanullable boolean

        Whether ownership data is missing.

    • results.namenullable object

      The match result for name.

      • results.name.match_scorenullable integer

        Match score in a 0-100 range. Only null if ownership data is missing.

      • results.name.missing_datanullable boolean

        Whether ownership data is missing.

    • results.phonenullable object

      The match result for phone.

      • results.phone.match_scorenullable integer

        Match score in a 0-100 range. Only null if ownership data is missing.

      • results.phone.missing_datanullable boolean

        Whether ownership data is missing.

  • typeenum

    The source of ownership data that was matched against.

    Possible enum values
    customer

    Customer object ownership information.

    owner_information

    User-specified ownership information.

The Ownership Match object
{
"id": "fcom_1NtI9uBHO5VeT9SUKLJU5suZ",
"object": "financial_connections.ownership_match",
"created": 1745858181,
"financial_connections_account": "fca_1MwVK82eZvKYlo2Cjw8FMxXf",
"type": "owner_information",
"owner_information": {
"name": "Jenny Rosen",
"address": {
"line1": "354 Oyster Point Blvd",
"line2": null,
"city": "South San Francisco",
"state": "CA",
"postal_code": "94080",
"country": "US"
},
"email": "jennyrosen@example.com",
"phone": "+1 212-555-5555"
},
"customer": null,
"ownership": "fcaowns_1NtI9uBHO5VeT9SUSRe21lqt",
"results": {
"name": {
"match_score": 85,
"missing_data": false
},
"address": {
"match_score": 100,
"missing_data": false
},
"email": {
"match_score": 65,
"missing_data": false
},
"phone": {
"match_score": null,
"missing_data": true
}
}
}