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

# Send a message to the AI athlete assistant

> Send a chat message to the AI assistant in the context of a specific job. The assistant has bounded context about the athlete and the job.
     *
     * **Session handling:** If `session_id` is omitted, the server resumes the latest existing session for this job, or starts a fresh one (new UUID). Pass the `session_id` returned in previous responses to continue a specific conversation thread.
     *
     * **Access control:** Athlete must be allowlisted for AI Assistant access AND must have a non-cancelled application for the given job. Returns 403 otherwise.



## OpenAPI

````yaml /storage/api-docs/api-docs.json post /athlete/ai-athlete-assistant/chat
openapi: 3.0.0
info:
  title: MOGL Core API
  description: >-
    MOGL Platform Core API — powering athlete NIL deals, brand partnerships,
    agent management, payments, messaging, and more.
     *
     * ## Authentication
     * - **JWT Bearer Token**: Most endpoints require a Bearer token obtained via `/api/login`.
     * - **Server-to-Server API Key**: Internal/lambda/cron endpoints use an `X-API-KEY` header.
     *
     * ## Rate Limiting
     * - Registration & login endpoints: 4–15 requests per minute
     * - Public/influencer endpoints: 200 requests per minute
     * - Authenticated endpoints: standard Laravel throttle
  version: 1.0.0
servers:
  - url: http://localhost/mogl/mogl-backend/api
    description: Local
  - url: https://dev-api.mogl.online/api
    description: Dev
  - url: https://staging-api.mogl.online/api
    description: Staging
  - url: https://api.mogl.online/api
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Authentication
    description: Login, registration, password reset
  - name: User Registration - Common
    description: Common user registration & email check
  - name: User Registration - Athlete
    description: Athlete registration & onboarding steps
  - name: User Registration - Partner
    description: Partner/Brand registration & onboarding steps
  - name: User Registration - Agent
    description: Agent registration & onboarding steps
  - name: User Registration - Fan
    description: Fan registration & onboarding steps
  - name: User Profile
    description: User profile management, settings, social media
  - name: Athlete
    description: 'Athlete-specific endpoints: search, details, availability'
  - name: Athlete - Availability Confirmation
    description: Post-hiring availability confirmation workflow
  - name: Athlete - NIL Feed
    description: Athlete NIL feed and partner search
  - name: Athlete - AI Assistant
    description: AI-powered job assistant for athletes — chat and conversation history
  - name: Partner
    description: Partner/Brand-specific endpoints
  - name: Partner - External Job
    description: External job link & applicant management
  - name: Partner - Deliverable Report
    description: Deliverable detail reports for brands
  - name: Partner - Screening Questions
    description: Screening question reports
  - name: Partner - Contract Management
    description: Brand contract management with athletes
  - name: Partner - Content Library
    description: Brand content library for deliverable assets
  - name: Agent
    description: Agent profile, athlete management, contracts
  - name: Agent - Athletes
    description: Agent-athlete relationship management
  - name: Agent - Stripe
    description: Agent payment methods & billing via Stripe
  - name: Agent - Contracts
    description: Agent athlete contract management
  - name: Agent - Availability Confirmation
    description: Agent managing athlete job availability
  - name: Jobs
    description: Job/deal CRUD, search, invitations, hiring, deliverables
  - name: Deals
    description: Deal listing, my deals, bulk operations
  - name: Deal Folder
    description: >-
      Deal folder file workflow — uploads, replacements, approvals, revisions,
      comments. Accessible by athlete, partner/brand, agent, and iOS clients
      (per-action authorisation enforced server-side).
  - name: Deal Folder iOS API
    description: >-
      iOS-only direct-to-S3 multipart upload endpoints for deal folder files
      (initiate/complete for new uploads and replacements). Web clients should
      use the standard `Deal Folder` upload/replace endpoints instead.
  - name: Chat
    description: Messaging, chat contacts, notifications
  - name: Notifications
    description: Notification preferences, in-app notifications
  - name: Payments
    description: Stripe payments, payment history, cards, bulk pay
  - name: Subscription
    description: Brand subscription plans & management
  - name: Public Pages
    description: Public content endpoints (no auth required)
  - name: Public - Influencer/SEO
    description: Public influencer discovery, sitemaps, directories
  - name: Services
    description: Athlete service marketplace
  - name: iOS Device
    description: iOS device tokens, live activities
  - name: Onboarding Tutorial
    description: Onboarding tutorial progress
  - name: MOGL Rosters
    description: Roster management & display
  - name: Internal / Cron
    description: Server-to-server and cron job endpoints
  - name: Affiliate
    description: Athlete affiliate links & tracking
paths:
  /athlete/ai-athlete-assistant/chat:
    post:
      tags:
        - Athlete - AI Assistant
      summary: Send a message to the AI athlete assistant
      description: >-
        Send a chat message to the AI assistant in the context of a specific
        job. The assistant has bounded context about the athlete and the job.
             *
             * **Session handling:** If `session_id` is omitted, the server resumes the latest existing session for this job, or starts a fresh one (new UUID). Pass the `session_id` returned in previous responses to continue a specific conversation thread.
             *
             * **Access control:** Athlete must be allowlisted for AI Assistant access AND must have a non-cancelled application for the given job. Returns 403 otherwise.
      operationId: aiAthleteAssistantChat
      requestBody:
        required: true
        content:
          application/json:
            schema:
              required:
                - job_id
                - message
              properties:
                job_id:
                  description: ID of the job/deal this conversation is about.
                  type: integer
                  minimum: 1
                  example: 42
                message:
                  description: >-
                    The athlete's message to the assistant (max 2000
                    characters).
                  type: string
                  maxLength: 2000
                  example: What deliverables are expected for this deal?
                session_id:
                  description: >-
                    UUID of an existing session to continue. Omit to auto-resume
                    the latest session for this job or start a new one.
                  type: string
                  maxLength: 64
                  example: 550e8400-e29b-41d4-a716-446655440000
                  nullable: true
              type: object
      responses:
        '200':
          description: >-
            Message sent. Returns both the athlete message item and the
            assistant reply item.
          content:
            application/json:
              schema:
                properties:
                  status:
                    type: string
                    example: success
                  message:
                    type: string
                    example: Message Sent Successfully!
                  data:
                    type: array
                    items:
                      properties:
                        turn_id:
                          type: integer
                          example: 1
                        session_id:
                          type: string
                          example: 550e8400-e29b-41d4-a716-446655440000
                        sender:
                          type: string
                          enum:
                            - athlete
                            - assistant
                          example: athlete
                        content:
                          type: string
                          example: What deliverables are expected for this deal?
                        created_at:
                          type: string
                          format: date-time
                          example: '2025-01-01T00:00:00Z'
                      type: object
                type: object
        '401':
          description: Unauthenticated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthorizedResponse'
        '403':
          description: >-
            AI Assistant not available for this account, or athlete does not
            have access to this job
        '422':
          description: Validation error (missing/invalid job_id or message)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationErrorResponse'
        '503':
          description: AI service temporarily unavailable
      security:
        - bearerAuth: []
components:
  schemas:
    UnauthorizedResponse:
      properties:
        message:
          type: string
          example: Unauthenticated.
      type: object
    ValidationErrorResponse:
      properties:
        message:
          type: string
          example: The given data was invalid.
        errors:
          type: object
          additionalProperties:
            type: array
            items:
              type: string
      type: object
  securitySchemes:
    bearerAuth:
      type: http
      description: >-
        JWT Bearer token authentication. Use the /api/login endpoint to obtain a
        token.
      scheme: bearer
      bearerFormat: JWT

````