# renew

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/static_transfer_proxy/renew:
    post:
      summary: renew
      deprecated: false
      description: ''
      tags:
        - Static proxy/static indirect proxy
        - static direct proxy
      parameters:
        - name: Authorization
          in: header
          description: ''
          example: Bearer {{AUTH_TOKEN}}
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                id:
                  description: record id to renew
                  type: integer
                is_datacenter:
                  description: true for datacenter, false for residential
                  type: boolean
              x-apifox-refs: {}
              x-apifox-orders:
                - id
                - is_datacenter
              required:
                - is_datacenter
                - id
            example:
              is_datacenter: true
              id: 1
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                x-apifox-refs: {}
                x-apifox-orders:
                  - meta_message
                  - meta_status
                properties:
                  meta_message:
                    type: string
                    description: success or other error msg
                  meta_status:
                    type: integer
                    description: 1 success, negative for error
                required:
                  - meta_status
                  - meta_message
          headers: {}
          x-apifox-name: result
      security: []
      x-apifox-folder: Static proxy/static indirect proxy
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/2880121/apis/api-90739011-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://api.ipcola.com
    description: ipcola
security: []

```
