Contacts Webhooks

Contact webhooks can be used to track contact cards created by client.

Contact Created/Updated

This event is sent when client creates or updates a contact card.

  • Name
    Wid
    Type
    string (Max 64)
    Description

    Wealth’s unique identifier for the client.

  • Name
    EventType
    Type
    string
    Description

    ContactCardUpdated

  • Name
    Timestamp
    Type
    string
    Description

    The time when the event was generated. ISO 8601 date time.

  • Name
    FirstName
    Type
    string
    Description

    First name of the contact.

  • Name
    LastName
    Type
    string
    Description

    Last name of the contact.

  • Name
    LegalName
    Type
    string
    Description

    Legal name of the contact in case it's a legal entity.

  • Name
    AddressLine1
    Type
    string
    Description

    Address line 1 of the contact.

  • Name
    AddressLine2
    Type
    string
    Description

    Address line 2 of the contact.

  • Name
    AddressCity
    Type
    string
    Description

    City of the contact.

  • Name
    AddressStateAbbreviation
    Type
    string
    Description

    State of the contact abbreviated.

  • Name
    OldContactCardData
    Type
    json
    Description

    The old contact card data.
    This is only sent when the contact card is updated.
    Contains the old values of the contact card.

Contact Created Test Payload

{
  "Wid": "ec5c1cda-2e6b-45b9-b66f-f67560d708b2",
  "EventType": "ContactCardUpdated",
  "Timestamp":"2023-04-13T06:43:12.947-07:00",
  "FirstName": "John",
  "LastName": "Smith",
  "LegalName": "",
  "AddressLine1": "1234 Main St",
  "AddressLine2": "",
  "AddressCity": "San Francisco",
  "AddressStateAbbreviation": "CA",
  "OldContactCardData": {
    "FirstName": "John",
    "LastName": "Smith",
    "LegalName": "",
    "AddressLine1": "1235 Main St",
    "AddressLine2": "",
    "AddressCity": "San Francisco",
    "AddressStateAbbreviation": "CA"
  }
}