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

# Update Cloud business profile

> **Protocols:** Linked Device API · Meta Cloud API

**Required scope:** `sessions:manage`



## OpenAPI

````yaml api-reference/features/waba-features-graph.json POST /graph/whatsapp/{version}/{phoneNumberId}/whatsapp_business_profile
openapi: 3.0.3
info:
  title: WABA features Polymorfa Graph API methods
  version: 1.0.0
  description: Task-focused waba features methods exposed by the Polymorfa Graph API.
servers: []
security: []
paths:
  /graph/whatsapp/{version}/{phoneNumberId}/whatsapp_business_profile:
    post:
      tags:
        - Business profile
      summary: Update Cloud business profile
      description: |-
        **Protocols:** Linked Device API · Meta Cloud API

        **Required scope:** `sessions:manage`
      operationId: graphUpdateBusinessProfile
      parameters:
        - schema:
            type: string
            example: v21.0
          required: true
          name: version
          in: path
          description: Specifies version for this path parameter.
        - schema:
            type: string
            example: '123456789012345'
          required: true
          name: phoneNumberId
          in: path
          description: Identifier for the phone number.
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/graph__GraphBusinessProfileUpdateRequest'
      responses:
        '200':
          description: Updated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/graph__GraphProfileUpdateResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/graph__GraphError'
        '401':
          description: Unauthenticated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/graph__GraphError'
        '403':
          description: Permission error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/graph__GraphError'
        '404':
          description: Object does not exist
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/graph__GraphError'
        '429':
          description: Rate limited
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/graph__GraphError'
        '500':
          description: Internal error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/graph__GraphError'
      security:
        - graph__BearerAuth: []
      servers:
        - url: https://api.polymorfa.com
components:
  schemas:
    graph__GraphBusinessProfileUpdateRequest:
      type: object
      properties:
        messaging_product:
          type: string
          description: Messaging product associated with this Graph API object.
        about:
          type: string
          description: >-
            Specifies about for this graph graph business profile update
            request.
        address:
          type: string
          description: >-
            Specifies address for this graph graph business profile update
            request.
        description:
          type: string
          description: Human-readable description of this resource.
        email:
          type: string
          description: Email address associated with this resource.
        profile_picture_handle:
          type: string
          description: >-
            Specifies profile picture handle for this graph graph business
            profile update request.
        websites:
          type: array
          items:
            type: string
          description: >-
            Websites associated with this graph graph business profile update
            request.
        vertical:
          type: string
          description: >-
            Specifies vertical for this graph graph business profile update
            request.
    graph__GraphProfileUpdateResponse:
      type: object
      properties:
        success:
          type: boolean
          description: Whether the request succeeded.
      required:
        - success
    graph__GraphError:
      type: object
      properties:
        error:
          type: object
          properties:
            message:
              type: string
              description: Human-readable message associated with this result.
            type:
              type: string
              description: Type discriminator for this object.
            code:
              type: number
              description: Stable machine-readable code for this result.
            error_subcode:
              type: number
              description: Machine-readable error subcode for this error.
            error_data:
              nullable: true
              description: |-
                Specifies error data for this error.

                <!-- polymorfa-input-table -->
                **Accepted alternatives**
                | Alternative | Accepted input |
                | --- | --- |
                | Alternative 1 | Any JSON value matching this alternative |
                | Alternative 2 | `null` |
            fbtrace_id:
              type: string
              description: Identifier for the fbtrace.
          required:
            - message
            - type
            - code
            - fbtrace_id
          description: Error details returned when the operation fails.
      required:
        - error
  securitySchemes:
    graph__BearerAuth:
      type: http
      scheme: bearer
      description: >-
        Polymorfa organization key (pmfa_ prefix) or project token (pmfa_pt_
        prefix). Client tokens are not accepted by Graph operations.

````