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

# Update Profile

> Update your user profile.

**Required scope:** `write`

Update profile fields like name, company, role, seniority, etc.
This is useful for n8n to auto-complete profiles based on external data.



## OpenAPI

````yaml /openapi/openapi-external.json patch /profile
openapi: 3.1.0
info:
  title: Quikly.ai External API
  version: 1.0.0
  description: >-
    REST API for external integrations with Quikly.ai. Authenticate using an API
    key passed in the X-API-Key header. Use these endpoints from n8n, Zapier,
    custom scripts, or any HTTP client.
servers: []
security:
  - ApiKeyAuth: []
tags:
  - name: Proposals
    description: Create, read, update, and manage client proposals.
  - name: Profile
    description: Read and update the authenticated user's profile.
  - name: Templates
    description: Manage reusable proposal templates.
  - name: AI Services
    description: >-
      AI-powered analysis: rate recommendations, brief analysis,
      differentiators.
  - name: Public API
  - name: Usage
    description: Query API usage and quota information.
  - name: Webhooks
    description: Manage webhook subscriptions for real-time events.
  - name: Agent
    description: Interact with the AI agent for automated workflows.
  - name: Lead Sessions
    description: Track and manage lead capture sessions.
paths:
  /profile:
    patch:
      tags:
        - Public API
      summary: Update Profile
      description: |-
        Update your user profile.

        **Required scope:** `write`

        Update profile fields like name, company, role, seniority, etc.
        This is useful for n8n to auto-complete profiles based on external data.
      operationId: update_profile_api_external_v1_profile_patch
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UserProfileUpdate'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    UserProfileUpdate:
      properties:
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
        profile:
          anyOf:
            - $ref: '#/components/schemas/UserProfile'
            - type: 'null'
      type: object
      title: UserProfileUpdate
      description: Schema for updating user profile.
    UserResponse:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        email:
          type: string
          title: Email
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
        user_type:
          type: string
          title: User Type
          default: provider
        email_verified:
          type: boolean
          title: Email Verified
          default: false
        profile:
          type: object
          title: Profile
          default: {}
        effective_tier:
          type: string
          title: Effective Tier
          default: free
        is_admin:
          type: boolean
          title: Is Admin
          default: false
        created_at:
          type: string
          format: date-time
          title: Created At
        team_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Team Id
        team_role:
          anyOf:
            - type: string
            - type: 'null'
          title: Team Role
        team_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Team Name
      type: object
      required:
        - id
        - email
        - created_at
      title: UserResponse
      description: Schema for user response.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    UserProfile:
      properties:
        companyName:
          type: string
          title: Companyname
          default: ''
        slogan:
          type: string
          title: Slogan
          default: ''
        logoUrl:
          anyOf:
            - type: string
            - type: 'null'
          title: Logourl
        name:
          type: string
          title: Name
          default: ''
        email:
          anyOf:
            - type: string
            - type: 'null'
          title: Email
        phone:
          anyOf:
            - type: string
            - type: 'null'
          title: Phone
        website:
          anyOf:
            - type: string
            - type: 'null'
          title: Website
        location:
          type: string
          title: Location
          default: ''
        providerType:
          type: string
          title: Providertype
          default: freelancer
        workAreas:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Workareas
        role:
          type: string
          title: Role
          default: Fullstack Developer
        seniority:
          type: string
          title: Seniority
          default: Junior
        weeklyHours:
          anyOf:
            - type: integer
            - type: 'null'
          title: Weeklyhours
          default: 40
        availability:
          anyOf:
            - type: string
            - type: 'null'
          title: Availability
        teamSize:
          anyOf:
            - type: integer
            - type: 'null'
          title: Teamsize
        orgDescription:
          anyOf:
            - type: string
            - type: 'null'
          title: Orgdescription
        orgServices:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Orgservices
        orgClients:
          anyOf:
            - type: string
            - type: 'null'
          title: Orgclients
        companyTaxId:
          anyOf:
            - type: string
            - type: 'null'
          title: Companytaxid
        agencyMargin:
          anyOf:
            - type: number
            - type: 'null'
          title: Agencymargin
        rateCards:
          anyOf:
            - items: {}
              type: array
            - type: 'null'
          title: Ratecards
        teamMembers:
          anyOf:
            - items: {}
              type: array
            - type: 'null'
          title: Teammembers
        yearsOfExperience:
          anyOf:
            - type: integer
            - type: 'null'
          title: Yearsofexperience
        portfolioUrl:
          anyOf:
            - type: string
            - type: 'null'
          title: Portfoliourl
        githubUrl:
          anyOf:
            - type: string
            - type: 'null'
          title: Githuburl
        linkedinUrl:
          anyOf:
            - type: string
            - type: 'null'
          title: Linkedinurl
        skills:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Skills
        certifications:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Certifications
        bio:
          anyOf:
            - type: string
            - type: 'null'
          title: Bio
        relevantProjects:
          anyOf:
            - items:
                type: object
              type: array
            - type: 'null'
          title: Relevantprojects
        taxRate:
          type: number
          title: Taxrate
          default: 0
        taxName:
          type: string
          title: Taxname
          default: VAT
        paymentInfo:
          anyOf:
            - type: string
            - type: 'null'
          title: Paymentinfo
        paymentMethods:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Paymentmethods
        clientPaymentLinkUrl:
          anyOf:
            - type: string
            - type: 'null'
          title: Clientpaymentlinkurl
        bankDetails:
          anyOf:
            - type: string
            - type: 'null'
          title: Bankdetails
        customValidityNote:
          anyOf:
            - type: string
            - type: 'null'
          title: Customvaliditynote
        customOperationalNote:
          anyOf:
            - type: string
            - type: 'null'
          title: Customoperationalnote
        demoMode:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Demomode
        apiKey:
          anyOf:
            - type: string
            - type: 'null'
          title: Apikey
        openaiApiKey:
          anyOf:
            - type: string
            - type: 'null'
          title: Openaiapikey
        aiProvider:
          anyOf:
            - type: string
            - type: 'null'
          title: Aiprovider
          default: gemini
        customClauses:
          anyOf:
            - items:
                $ref: '#/components/schemas/CustomClause'
              type: array
            - type: 'null'
          title: Customclauses
        translationsEn:
          anyOf:
            - additionalProperties:
                type: string
              type: object
            - type: 'null'
          title: Translationsen
        telegramChatId:
          anyOf:
            - type: string
            - type: 'null'
          title: Telegramchatid
        uiLanguage:
          anyOf:
            - type: string
            - type: 'null'
          title: Uilanguage
        theme:
          anyOf:
            - type: string
            - type: 'null'
          title: Theme
        themeStyle:
          anyOf:
            - type: string
            - type: 'null'
          title: Themestyle
        onboardingProgress:
          anyOf:
            - type: object
            - type: 'null'
          title: Onboardingprogress
        proposalDefaults:
          anyOf:
            - type: object
            - type: 'null'
          title: Proposaldefaults
      additionalProperties: true
      type: object
      title: UserProfile
      description: User profile schema matching frontend UserProfile type.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    CustomClause:
      properties:
        id:
          type: string
          title: Id
        title:
          anyOf:
            - type: object
            - type: 'null'
          title: Title
        content:
          anyOf:
            - type: object
            - type: 'null'
          title: Content
        titleEs:
          anyOf:
            - type: string
            - type: 'null'
          title: Titlees
        titleEn:
          anyOf:
            - type: string
            - type: 'null'
          title: Titleen
        contentEs:
          anyOf:
            - type: string
            - type: 'null'
          title: Contentes
        contentEn:
          anyOf:
            - type: string
            - type: 'null'
          title: Contenten
      type: object
      required:
        - id
      title: CustomClause
      description: >-
        Custom clause for proposals (Pro/Lifetime feature). Accepts frontend
        format: title/content as {"es": "", "en": ""}.
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: API key obtained from Quikly.ai Settings → API Keys.
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key

````