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

# Submit Market SkillBot public profile update

> Creates a pending review request for listing public profile fields only. It does not change execution version, input/output contract, pricing, sale status, or transaction facts before approval.



## OpenAPI

````yaml /developer-reference/loomloom-api/openapi.json post /loom/v1/marketListings/{marketListing}:updatePublicProfile
openapi: 3.1.0
info:
  title: loomloom
  description: HTTP API for executing and managing loomloom AI work through CogFoundry.
  version: market-v1
  summary: ''
  contact: {}
servers:
  - url: https://loomloom.cogfoundry.ai
    description: CogFoundry production
security:
  - bearer: []
tags:
  - name: System
  - name: Creator Earnings
  - name: Creators
  - name: Creator Reviews
  - name: Input Assets
  - name: Market Listings
  - name: Market Runs
  - name: Models
  - name: Official Templates
  - name: Assets
  - name: Users
  - name: Runs
  - name: User Templates
paths:
  /loom/v1/marketListings/{marketListing}:updatePublicProfile:
    post:
      tags:
        - Market Listings
      summary: Submit Market SkillBot public profile update
      description: >-
        Creates a pending review request for listing public profile fields only.
        It does not change execution version, input/output contract, pricing,
        sale status, or transaction facts before approval.
      parameters:
        - name: marketListing
          in: path
          description: Market listing ID
          required: true
          example: ''
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: >-
                #/components/schemas/server.updateMarketListingPublicProfileRequest
        required: true
      responses:
        '202':
          description: Accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/server.marketReviewRequestResponse'
          headers: {}
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/server.errorResponse'
          headers: {}
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/server.errorResponse'
          headers: {}
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/server.errorResponse'
          headers: {}
        '409':
          description: Conflict
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/server.errorResponse'
          headers: {}
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/server.errorResponse'
          headers: {}
      deprecated: false
      security:
        - BearerAuth1: []
components:
  schemas:
    server.updateMarketListingPublicProfileRequest:
      type: object
      properties:
        description:
          type: string
        displayName:
          type: string
    server.marketReviewRequestResponse:
      type: object
      properties:
        description:
          type: string
        displayName:
          type: string
        id:
          type: string
        listingId:
          type: string
        listingVersionId:
          type: string
        reviewReason:
          type: string
        reviewedAtUnix:
          type: integer
        status:
          type: string
        submittedAtUnix:
          type: integer
    server.errorResponse:
      type: object
      properties:
        error:
          type: string
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
    BearerAuth1:
      description: 'Use `Authorization: Bearer <api-token>`.'
      type: apiKey
      name: Authorization
      in: header

````