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

# Reset portal personalization

> Remove saved profile-level portal colors. The profile image is not deleted. The response returns the fallback or default effective settings after reset.



## OpenAPI

````yaml /api/consumer.openapi.yaml delete /profile/personalization
openapi: 3.1.0
info:
  title: YouNegotiate Consumer API
  version: '2.0'
  description: >-
    Stateless API endpoints for consumer portal authentication and account
    access.
servers:
  - url: https://api.consumer.younegotiate.com
    description: Production
security: []
tags:
  - name: System
    description: Public consumer domain system and health endpoints.
  - name: Authentication
    description: >-
      Consumer identity matching, contact capture, OTP verification, token
      creation, and logout endpoints.
  - name: Profile - My ecoAddress
    description: Consumer profile tab for signed-in identity / ecoAddress context.
  - name: Profile - Communication Controls
    description: >-
      Consumer profile tab for communication permissions, email/mobile changes,
      and email/mobile verification.
  - name: Profile - My Billing Details
    description: >-
      Consumer profile tab for billing name and billing address details used for
      payment verification.
  - name: Profile - Personalize My Portal
    description: Consumer profile tab for portal colors and profile image personalization.
  - name: Accounts
    description: Consumer-owned account list and account detail endpoints.
  - name: Bill Pay Wallet
    description: >-
      Consumer Bill Pay Wallet saved payment profiles and scheduled payment
      method update endpoints.
  - name: Upcoming Payments
    description: >-
      Consumer My Bill Pay Calendar upcoming-payment rows and calendar display
      data.
  - name: Calendar Sync
    description: >-
      Consumer Google and Microsoft calendar connection, OAuth callback, and
      live-update endpoints.
  - name: Gift Registry
    description: >-
      Consumer Bill Pay Gift Registry account list, shared registry, and Helping
      Hand link endpoints.
  - name: EcoMailbox
    description: Consumer MyEcoMailBox list endpoints and unread sidebar badge state.
  - name: Notice Responses
    description: >-
      Consumer My Account notice-response wizard endpoints for sender details
      and account details.
paths:
  /profile/personalization:
    delete:
      tags:
        - Profile - Personalize My Portal
      summary: Reset portal personalization
      description: >-
        Remove saved profile-level portal colors. The profile image is not
        deleted. The response returns the fallback or default effective settings
        after reset.
      operationId: consumerResetProfilePersonalization
      responses:
        '200':
          description: Portal personalization settings reset.
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/ConsumerProfilePersonalizationMutationResponse
        '401':
          $ref: '#/components/responses/Unauthenticated'
      security:
        - bearerAuth: []
components:
  schemas:
    ConsumerProfilePersonalizationMutationResponse:
      type: object
      required:
        - message
        - data
      properties:
        message:
          type: string
          example: Personalized portal settings updated successfully.
        data:
          $ref: '#/components/schemas/ConsumerProfilePersonalization'
    ConsumerProfilePersonalization:
      type: object
      required:
        - configured_logo
        - effective_logo
        - profile_image
        - defaults
      properties:
        configured_logo:
          oneOf:
            - $ref: '#/components/schemas/ConsumerProfilePersonalizedLogo'
            - type: 'null'
          description: >-
            Saved profile-level portal colors. Null means the profile is using
            fallback/default colors.
        effective_logo:
          $ref: '#/components/schemas/ConsumerProfileEffectiveLogo'
        profile_image:
          $ref: '#/components/schemas/ProfileImage'
        defaults:
          $ref: '#/components/schemas/PersonalizationDefaults'
    MessageResponse:
      type: object
      required:
        - message
      properties:
        message:
          type: string
    ConsumerProfilePersonalizedLogo:
      type: object
      required:
        - id
        - consumer_profile_id
        - primary_color
        - secondary_color
      properties:
        id:
          type: integer
        consumer_profile_id:
          type: integer
        primary_color:
          type: string
          example: '#112233'
        secondary_color:
          type: string
          example: '#445566'
        created_at:
          type: string
          format: date-time
          nullable: true
        updated_at:
          type: string
          format: date-time
          nullable: true
    ConsumerProfileEffectiveLogo:
      type: object
      required:
        - id
        - source
        - primary_color
        - secondary_color
        - size
      properties:
        id:
          type: integer
          nullable: true
        source:
          type: string
          enum:
            - consumer_profile
            - subclient
            - company
            - default
          description: >-
            `consumer_profile` wins globally. If no profile override exists, an
            owned `consumer_id` query value can resolve subclient or company
            branding. Without that query value, default branding is returned.
        primary_color:
          type: string
          example: '#0079f2'
        secondary_color:
          type: string
          example: '#000000'
        size:
          type: integer
          example: 320
    ProfileImage:
      type: object
      required:
        - name
        - url
        - thumbnail_url
      properties:
        name:
          type: string
          nullable: true
        url:
          type: string
          example: >-
            https://api.consumer.younegotiate.com/storage/profile-images/consumer.jpg
        thumbnail_url:
          type: string
          example: >-
            https://api.consumer.younegotiate.com/storage/profile-images/thumbs/consumer.webp
    PersonalizationDefaults:
      type: object
      required:
        - primary_color
        - secondary_color
        - size
      properties:
        primary_color:
          type: string
          example: '#0079f2'
        secondary_color:
          type: string
          example: '#000000'
        size:
          type: integer
          example: 320
  responses:
    Unauthenticated:
      description: Missing or invalid bearer token.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/MessageResponse'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Sanctum token

````