# Update developer profile

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /developers_update:
    put:
      summary: Update developer profile
      deprecated: false
      description: ''
      tags:
        - Developers
        - Developers
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DeveloperUpdate'
      responses:
        '200':
          description: Profile updated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UpdateResponse'
          headers: {}
          x-apidog-name: ''
      security: []
      x-apidog-folder: Developers
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/1150986/apis/api-25474682-run
components:
  schemas:
    DeveloperUpdate:
      type: object
      required:
        - developer_id
      properties:
        developer_id:
          type: string
          format: uuid
        name:
          type: string
        skills:
          type: array
          items:
            type: string
        experience_level:
          type: string
        interests:
          type: array
          items:
            type: string
        location:
          type: string
        willing_to_relocate:
          type: boolean
        looking_for:
          type: array
          items:
            type: string
      x-apidog-orders:
        - developer_id
        - name
        - skills
        - experience_level
        - interests
        - location
        - willing_to_relocate
        - looking_for
      x-apidog-ignore-properties: []
      x-apidog-folder: ''
    UpdateResponse:
      type: object
      properties:
        success:
          type: boolean
        message:
          type: string
        updated_fields:
          type: array
          items:
            type: string
      x-apidog-orders:
        - success
        - message
        - updated_fields
      x-apidog-ignore-properties: []
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://xmsx-hkkx-nz6p.n7e.xano.io/api:v1
    description: Production server
security: []

```
