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

# Update Proxy Settings

> Update the password, traffic limit, or remarks for rotating proxies.



## OpenAPI

````yaml patch /go-api/v1/account/proxySetup
openapi: 3.0.1
info:
  title: GoProxy API Documentation
  description: ''
  version: 1.0.0
servers: []
security: []
tags: []
paths:
  /go-api/v1/account/proxySetup:
    patch:
      tags: []
      summary: Update Proxy Settings
      description: Update the password, traffic limit, or remarks for rotating proxies.
      parameters:
        - name: apiKey
          in: header
          description: API key used for authentication.
          required: true
          example: ''
          schema:
            type: string
            title: apiKey
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AccountProxySetupRequestBody'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccountProxySetupResponseModel'
          headers: {}
      deprecated: false
      security: []
components:
  schemas:
    AccountProxySetupRequestBody:
      properties:
        proxyType:
          type: integer
          title: proxyType
          description: >-
            The proxy type to modify. 

            Use: 1 for Rotating Residential, 2 for Rotating Mobile, 3 for
            Rotating Datacenter.
        newPassword:
          type: string
          title: newPassword
          description: >-
            The new password for proxy account. Password must be between 6 and 8
            characters or numbers.
        newRemarks:
          type: string
          title: newRemarks
          description: New remarks for proxy account.
        newTrafficLimit:
          type: integer
          title: newTrafficLimit
          description: >-
            The new traffic limit for proxy account in GB. Leave blank or omit
            for unlimited traffic.
      type: object
      required:
        - proxyType
      title: AccountProxySetupRequestBody
    AccountProxySetupResponseModel:
      type: string
      title: AccountProxySetupResponseModel
      example: Success

````