ClientTelephoneUpdatedV1
v1.0.0

Holds information about when a client updates telephone number.
When firing this event make sure you set the `correlation-id` in the headers. Our schemas have standard metadata so please make sure you read and follow it.

Details

This event can be triggered multiple times per client. Everytime the clients updates their phone number it will trigger this event.

Consumer / Producer Diagram

ClientTelephoneUpdatedV1 Schema (json)
{
  "$id": "https://example.com/ClientTelephoneUpdatedV1.json",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ClientTelephoneUpdatedV1",
  "description": "An event raised when a client telephone is updated",
  "type": "object",
  "properties": {
    "metadata": {
      "type": "object",
      "properties": {
        "occurredAtUtc": {
          "type": "string",
          "description": "The date and time when event occurred in UTC. Date should be represented in ISO 8601 format e.g 2023-09-08T12:00:00Z"
        },
        "typeName": {
          "type": "string",
          "description": "The name of the event. E.g ClientTelephoneUpdatedV1"
        },
        "source": {
          "type": "string",
          "description": "The source of the event like was it genereated by Client using Web or WeChat"
        },
       "version":{
          "type": "string",
          "description": "Version number in format of V{n} for e.g V1, V2"
        },   
        "sentAtUtc": {
          "type": "string",
          "description":  "When event was sent by the publishers in ISO 8601 "
        }               
      },
      "required": [ "occurredAtUtc", "typeName", "sentAtUtc", "version"]
    },
    "data": {
      "type": "object",
      "properties": {
     
      }
    }
  }
}
Edit this pageLast updated on 2026/1/30