> ## Documentation Index
> Fetch the complete documentation index at: https://docs.vooma.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# On Tracking Update Created

> Sent by Vooma to your server when a new tracking update is available.

<Warning>
  <strong>Beta Feature:</strong> This functionality is currently in beta. You
  may experience changes or limited support as we continue to improve it.
</Warning>


## OpenAPI

````yaml WEBHOOK onTrackingUpdateCreated
openapi: 3.1.0
info:
  title: api
  version: 0.1.0
  contact: {}
servers:
  - url: https://api.vooma.ai/v0
    description: Vooma API
security: []
paths:
  onTrackingUpdateCreated:
    post:
      description: Sent by Vooma to your server when a new tracking update is available.
      operationId: OnTrackingUpdateCreated
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TrackingUpdateEvent'
      responses:
        '200':
          description: OK
        '204':
          description: No content
      security: []
components:
  schemas:
    TrackingUpdateEvent:
      $ref: '#/components/schemas/V0TrackingUpdate.TrackingUpdateEvent'
    V0TrackingUpdate.TrackingUpdateEvent:
      properties:
        trackingUpdate:
          $ref: '#/components/schemas/TrackingUpdate'
        event:
          type: string
          enum:
            - trackingUpdate.created
          nullable: false
      required:
        - trackingUpdate
        - event
      type: object
    TrackingUpdate:
      properties:
        trackingStatus:
          allOf:
            - $ref: '#/components/schemas/TrackingStatus'
          nullable: true
        currentLocation:
          allOf:
            - $ref: '#/components/schemas/Address'
          nullable: true
          description: The current location of the carrier.
        departedAt:
          type: string
          nullable: true
          description: Timestamp that the carrier departed from the current stop.
        arrivedAt:
          type: string
          nullable: true
          description: Timestamp that the carrier arrived at the current stop.
        trackingComment:
          type: string
          nullable: true
          description: A free-form comment with tracking-related information.
        stop:
          $ref: '#/components/schemas/TrackingUpdateStop'
          description: The relevant stop (if any) to the tracking update.
        movement:
          $ref: '#/components/schemas/TrackingUpdateMovement'
          description: Identifiers for the relevant movement.
      required:
        - movement
      type: object
    TrackingStatus:
      type: string
    Address:
      properties:
        country:
          type: string
        postalCode:
          type: string
        city:
          type: string
        state:
          type: string
        addressTwo:
          type: string
        addressOne:
          type: string
      type: object
    TrackingUpdateStop:
      properties:
        type:
          $ref: '#/components/schemas/StopType'
        stopIndex:
          type: number
          format: double
      required:
        - stopIndex
      type: object
    TrackingUpdateMovement:
      properties:
        externalIds:
          items:
            $ref: '#/components/schemas/MovementExternalIdentifier'
          type: array
        id:
          type: string
      required:
        - externalIds
        - id
      type: object
    StopType:
      enum:
        - PICKUP
        - DELIVERY
      type: string
    MovementExternalIdentifier:
      properties:
        type:
          anyOf:
            - $ref: '#/components/schemas/MovementExternalIdentifierType'
            - type: string
        value:
          type: string
      required:
        - type
        - value
      type: object
      additionalProperties: false
    MovementExternalIdentifierType:
      enum:
        - CUSTOM
      type: string

````