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

# Send Push Live Activity Notification

> Send an update or end event to an existing Live Activity session.

Send an update or end event to an existing Live Activity session.

```json theme={null}
{
  "app_id": "push_app_short_id",
  "event": "update",
  "title": "Delivery",
  "status": "Driver nearby",
  "progress": 0.75,
  "eta": "2026-06-21T21:05:00.000Z",
  "buttons": [
    {
      "id": "open",
      "text": "Open",
      "launch_url": "myapp://orders/123"
    }
  ]
}
```

Use `"event": "end"` to close the Live Activity. End events may include a final
`status`, `body`, and `dismiss_at` timestamp.


## OpenAPI

````yaml api-reference/openapi.json POST /push/live-activities/{activity_id}/notifications
openapi: 3.0.1
info:
  title: Sendrealm API
  description: >-
    API for email, push, audience resources, domains, campaign drafts,
    templates, events, topics, and automations
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.sendrealm.com
security:
  - bearerAuth: []
paths:
  /push/live-activities/{activity_id}/notifications:
    post:
      summary: Send a push Live Activity notification
      description: Send an update or end event to an existing Live Activity session.
      parameters:
        - name: activity_id
          in: path
          required: true
          schema:
            type: string
      requestBody:
        description: Live Activity update or end payload
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PushLiveActivityNotification'
        required: true
      responses:
        '200':
          description: Live Activity notification sent
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PushLiveActivityResponse'
        '201':
          description: Live Activity notification sent
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PushLiveActivityResponse'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '409':
          $ref: '#/components/responses/Conflict'
        '422':
          $ref: '#/components/responses/UnprocessableEntity'
components:
  schemas:
    PushLiveActivityNotification:
      allOf:
        - $ref: '#/components/schemas/PushLiveActivityFields'
        - type: object
          required:
            - app_id
            - event
          properties:
            app_id:
              type: string
              description: Push app short ID.
            event:
              type: string
              enum:
                - update
                - end
    PushLiveActivityResponse:
      allOf:
        - $ref: '#/components/schemas/Envelope'
        - type: object
          required:
            - data
          properties:
            data:
              type: object
              required:
                - id
                - activity_id
                - event
                - total
                - sent
                - failed
              properties:
                id:
                  type: string
                  format: uuid
                activity_id:
                  type: string
                event:
                  type: string
                total:
                  type: integer
                sent:
                  type: integer
                failed:
                  type: integer
    PushLiveActivityFields:
      type: object
      properties:
        title:
          type: string
        subtitle:
          type: string
        body:
          type: string
        status:
          type: string
        progress:
          type: number
          minimum: 0
          maximum: 1
        eta:
          type: string
        image_url:
          type: string
          format: uri
        accent_color:
          type: string
        launch_url:
          type: string
          maxLength: 2048
        dismiss_at:
          type: string
          format: date-time
        buttons:
          type: array
          maxItems: 3
          items:
            $ref: '#/components/schemas/PushActionButton'
        data:
          type: object
          additionalProperties:
            $ref: '#/components/schemas/JsonValue'
    Envelope:
      type: object
      required:
        - status
      properties:
        status:
          type: integer
          description: HTTP response status code
    Error:
      type: object
      required:
        - status
        - error
      properties:
        status:
          type: integer
        error:
          type: object
          required:
            - code
            - message
          properties:
            code:
              type: string
            message:
              type: string
            details:
              $ref: '#/components/schemas/JsonValue'
            issues:
              type: array
              items:
                $ref: '#/components/schemas/ValidationIssue'
    PushActionButton:
      type: object
      required:
        - id
      additionalProperties: false
      anyOf:
        - type: object
          required:
            - text
        - type: object
          required:
            - title
      properties:
        id:
          type: string
        text:
          type: string
        title:
          type: string
          description: Deprecated alias for text.
        icon:
          type: string
        launch_url:
          type: string
          maxLength: 2048
    JsonValue:
      oneOf:
        - type: string
          nullable: true
        - type: number
        - type: boolean
        - type: object
          additionalProperties:
            $ref: '#/components/schemas/JsonValue'
        - type: array
          items:
            $ref: '#/components/schemas/JsonValue'
    ValidationIssue:
      type: object
      required:
        - code
        - path
        - message
      properties:
        code:
          type: string
        path:
          type: string
          nullable: true
        message:
          type: string
  responses:
    BadRequest:
      description: Bad request
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Unauthorized:
      description: Invalid or missing API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Conflict:
      description: Resource conflict
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    UnprocessableEntity:
      description: Request could not be processed
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````