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

# Update

> Update the specified DBT Service Token Rotation.

<Note>
  Check out the configuration docs for [DBT Service Token Rotations](/documentation/platform/secret-rotation/dbt-service-token) to learn how to obtain the required parameters.
</Note>


## OpenAPI

````yaml PATCH /api/v2/secret-rotations/dbt-service-token/{rotationId}
openapi: 3.0.3
info:
  title: Infisical API
  description: List of all available APIs that can be consumed
  version: 0.0.1
servers:
  - url: https://us.infisical.com
    description: Production server (US)
  - url: https://eu.infisical.com
    description: Production server (EU)
  - url: http://localhost:8080
    description: Local server
security: []
paths:
  /api/v2/secret-rotations/dbt-service-token/{rotationId}:
    patch:
      tags:
        - Secret Rotations
      description: Update the specified DBT Service Token Rotation.
      operationId: updateDBTServiceTokenRotation
      parameters:
        - schema:
            type: string
            format: uuid
          in: path
          name: rotationId
          required: true
          description: The ID of the DBT Service Token Rotation to be updated.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                  minLength: 1
                  maxLength: 64
                  description: >-
                    The updated name of the DBT Service Token Rotation. Must be
                    slug-friendly.
                description:
                  type: string
                  maxLength: 256
                  nullable: true
                  description: The updated description of the DBT Service Token Rotation.
                isAutoRotationEnabled:
                  type: boolean
                  description: >-
                    Whether secrets should be automatically rotated when the
                    specified rotation interval has elapsed.
                rotationInterval:
                  type: number
                  minimum: 1
                  description: >-
                    The updated interval, in days, to automatically rotate
                    secrets.
                rotateAtUtc:
                  type: object
                  properties:
                    hours:
                      type: number
                      minimum: 0
                      maximum: 23
                    minutes:
                      type: number
                      minimum: 0
                      maximum: 59
                  required:
                    - hours
                    - minutes
                  additionalProperties: false
                  description: >-
                    The updated hours and minutes rotation should occur at in
                    UTC.
                parameters:
                  type: object
                  properties:
                    tokenName:
                      type: string
                      minLength: 1
                      maxLength: 255
                      description: The name of the service token to create.
                    permissionGrants:
                      type: array
                      items:
                        type: object
                        properties:
                          permissionSet:
                            type: string
                            enum:
                              - account_admin
                              - account_viewer
                              - admin
                              - analyst
                              - billing_admin
                              - cost_insights_admin
                              - cost_insights_viewer
                              - cost_management_admin
                              - cost_management_viewer
                              - database_admin
                              - developer
                              - fusion_admin
                              - git_admin
                              - job_admin
                              - job_runner
                              - job_viewer
                              - manage_marketplace_apps
                              - member
                              - metadata_only
                              - owner
                              - project_creator
                              - readonly
                              - scim_only
                              - security_admin
                              - semantic_layer_only
                              - stakeholder
                              - team_admin
                              - webhooks_only
                          projectId:
                            type: number
                        required:
                          - permissionSet
                        additionalProperties: false
                      minItems: 1
                      description: The permission grants to apply to the service token.
                  required:
                    - tokenName
                    - permissionGrants
                  additionalProperties: false
                secretsMapping:
                  type: object
                  properties:
                    serviceToken:
                      type: string
                      minLength: 1
                      description: >-
                        The name of the secret that the service token will be
                        mapped to.
                  required:
                    - serviceToken
                  additionalProperties: false
              additionalProperties: false
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  secretRotation:
                    type: object
                    properties:
                      id:
                        type: string
                        format: uuid
                      name:
                        type: string
                      description:
                        type: string
                        nullable: true
                      isAutoRotationEnabled:
                        type: boolean
                        default: true
                      activeIndex:
                        type: number
                        default: 0
                      folderId:
                        type: string
                        format: uuid
                      connectionId:
                        type: string
                        format: uuid
                      createdAt:
                        type: string
                        format: date-time
                      updatedAt:
                        type: string
                        format: date-time
                      rotationInterval:
                        type: number
                      rotationStatus:
                        type: string
                      lastRotationAttemptedAt:
                        type: string
                        format: date-time
                      lastRotatedAt:
                        type: string
                        format: date-time
                      lastRotationJobId:
                        type: string
                        nullable: true
                      nextRotationAt:
                        type: string
                        format: date-time
                        nullable: true
                      isLastRotationManual:
                        type: boolean
                        default: true
                      connection:
                        type: object
                        properties:
                          app:
                            type: string
                            enum:
                              - dbt
                          name:
                            type: string
                          id:
                            type: string
                            format: uuid
                        required:
                          - app
                          - name
                          - id
                        additionalProperties: false
                      environment:
                        type: object
                        properties:
                          slug:
                            type: string
                          name:
                            type: string
                          id:
                            type: string
                            format: uuid
                        required:
                          - slug
                          - name
                          - id
                        additionalProperties: false
                      projectId:
                        type: string
                      folder:
                        type: object
                        properties:
                          id:
                            type: string
                          path:
                            type: string
                        required:
                          - id
                          - path
                        additionalProperties: false
                      rotateAtUtc:
                        type: object
                        properties:
                          hours:
                            type: number
                            minimum: 0
                            maximum: 23
                          minutes:
                            type: number
                            minimum: 0
                            maximum: 59
                        required:
                          - hours
                          - minutes
                        additionalProperties: false
                      lastRotationMessage:
                        type: string
                        nullable: true
                      type:
                        type: string
                        enum:
                          - dbt-service-token
                      parameters:
                        type: object
                        properties:
                          tokenName:
                            type: string
                            minLength: 1
                            maxLength: 255
                            description: The name of the service token to create.
                          permissionGrants:
                            type: array
                            items:
                              type: object
                              properties:
                                permissionSet:
                                  type: string
                                  enum:
                                    - account_admin
                                    - account_viewer
                                    - admin
                                    - analyst
                                    - billing_admin
                                    - cost_insights_admin
                                    - cost_insights_viewer
                                    - cost_management_admin
                                    - cost_management_viewer
                                    - database_admin
                                    - developer
                                    - fusion_admin
                                    - git_admin
                                    - job_admin
                                    - job_runner
                                    - job_viewer
                                    - manage_marketplace_apps
                                    - member
                                    - metadata_only
                                    - owner
                                    - project_creator
                                    - readonly
                                    - scim_only
                                    - security_admin
                                    - semantic_layer_only
                                    - stakeholder
                                    - team_admin
                                    - webhooks_only
                                projectId:
                                  type: number
                              required:
                                - permissionSet
                              additionalProperties: false
                            minItems: 1
                            description: >-
                              The permission grants to apply to the service
                              token.
                        required:
                          - tokenName
                          - permissionGrants
                        additionalProperties: false
                      secretsMapping:
                        type: object
                        properties:
                          serviceToken:
                            type: string
                            minLength: 1
                            description: >-
                              The name of the secret that the service token will
                              be mapped to.
                        required:
                          - serviceToken
                        additionalProperties: false
                    required:
                      - id
                      - name
                      - folderId
                      - connectionId
                      - createdAt
                      - updatedAt
                      - rotationInterval
                      - rotationStatus
                      - lastRotationAttemptedAt
                      - lastRotatedAt
                      - connection
                      - environment
                      - projectId
                      - folder
                      - rotateAtUtc
                      - type
                      - parameters
                      - secretsMapping
                    additionalProperties: false
                required:
                  - secretRotation
                additionalProperties: false
        '400':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  reqId:
                    type: string
                  statusCode:
                    type: number
                    enum:
                      - 400
                  message:
                    type: string
                  error:
                    type: string
                  details: {}
                required:
                  - reqId
                  - statusCode
                  - message
                  - error
                additionalProperties: false
        '401':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  reqId:
                    type: string
                  statusCode:
                    type: number
                    enum:
                      - 401
                  message:
                    type: string
                  error:
                    type: string
                required:
                  - reqId
                  - statusCode
                  - message
                  - error
                additionalProperties: false
        '403':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  reqId:
                    type: string
                  statusCode:
                    type: number
                    enum:
                      - 403
                  message:
                    type: string
                  details: {}
                  error:
                    type: string
                required:
                  - reqId
                  - statusCode
                  - message
                  - error
                additionalProperties: false
        '404':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  reqId:
                    type: string
                  statusCode:
                    type: number
                    enum:
                      - 404
                  message:
                    type: string
                  error:
                    type: string
                required:
                  - reqId
                  - statusCode
                  - message
                  - error
                additionalProperties: false
        '422':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  reqId:
                    type: string
                  statusCode:
                    type: number
                    enum:
                      - 422
                  message: {}
                  error:
                    type: string
                required:
                  - reqId
                  - statusCode
                  - error
                additionalProperties: false
        '500':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  reqId:
                    type: string
                  statusCode:
                    type: number
                    enum:
                      - 500
                  message:
                    type: string
                  error:
                    type: string
                required:
                  - reqId
                  - statusCode
                  - message
                  - error
                additionalProperties: false

````