> ## 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.

# Create

> Create a Cloudflare API Token Rotation for the specified project.

<Note>
  Check out the configuration docs for [Cloudflare API Token Rotations](/docs/documentation/platform/secret-rotation/cloudflare-api-token) to learn how to obtain the required parameters.
</Note>

Creates a Cloudflare API Token secret rotation. Infisical will create and rotate API tokens via your [Cloudflare connection](/docs/integrations/app-connections/cloudflare) and write them to the specified secret path.

## Request body

| Field                                      | Type          | Required    | Description                                                                                                                                                                                         |
| ------------------------------------------ | ------------- | ----------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `name`                                     | string        | Yes         | A unique name for the rotation (max 100 characters).                                                                                                                                                |
| `projectId`                                | string (UUID) | Yes         | The project ID.                                                                                                                                                                                     |
| `connectionId`                             | string (UUID) | Yes         | ID of the Cloudflare app connection.                                                                                                                                                                |
| `environment`                              | string        | Yes         | Environment slug (e.g. `dev`, `prod`).                                                                                                                                                              |
| `secretPath`                               | string        | Yes         | Path where the generated API token secrets will be stored.                                                                                                                                          |
| `isAutoRotationEnabled`                    | boolean       | No          | Whether to rotate automatically on the schedule. Defaults to `true`.                                                                                                                                |
| `rotationInterval`                         | number        | Yes         | Days between rotations (minimum `1`).                                                                                                                                                               |
| `rotateAtUtc`                              | object        | No          | Time of day (UTC) to run rotation: `{ "hours", "minutes" }`. Defaults to `{ "hours": 0, "minutes": 0 }`.                                                                                            |
| `parameters.name`                          | string        | Yes         | The name for the generated Cloudflare API token (max 100 characters). A timestamp is appended to each generated token.                                                                              |
| `parameters.policies`                      | array         | Yes         | The access policies to attach to the generated Cloudflare API token. Each policy scopes a set of permission groups to either the entire account or a set of zones. At least one policy is required. |
| `parameters.policies[].effect`             | string        | Yes         | Whether the policy grants or denies the permission groups: `"allow"` or `"deny"`.                                                                                                                   |
| `parameters.policies[].scope`              | string        | Yes         | The resources the policy applies to: `"account"` (the entire account), `"all-zones"` (every zone in the account), or `"zones"` (specific zones).                                                    |
| `parameters.policies[].zoneIds`            | string\[]     | Conditional | The IDs of the zones the policy applies to. Required when `scope` is `"zones"`, and rejected for the other scopes.                                                                                  |
| `parameters.policies[].permissionGroupIds` | string\[]     | Yes         | The IDs of the Cloudflare permission groups to grant. At least one is required.                                                                                                                     |
| `parameters.allowedIps`                    | string\[]     | No          | The IP addresses or CIDR blocks the generated Cloudflare API token is restricted to.                                                                                                                |
| `parameters.disallowedIps`                 | string\[]     | No          | The IP addresses or CIDR blocks the generated Cloudflare API token is denied from.                                                                                                                  |
| `secretsMapping.tokenId`                   | string        | Yes         | Secret key name to store the generated API token's ID (e.g. `CLOUDFLARE_API_TOKEN_ID`).                                                                                                             |
| `secretsMapping.apiToken`                  | string        | Yes         | Secret key name to store the generated API token's value (e.g. `CLOUDFLARE_API_TOKEN`).                                                                                                             |
| `description`                              | string        | No          | Optional description.                                                                                                                                                                               |

## Sample request

```bash theme={"dark"}
curl --request POST \
  --url https://us.infisical.com/api/v2/secret-rotations/cloudflare-api-token \
  --header 'Content-Type: application/json' \
  --header 'Authorization: Bearer <ACCESS_TOKEN>' \
  --data '{
    "name": "my-cloudflare-rotation",
    "projectId": "<project-id>",
    "description": "Cloudflare API token rotation",
    "connectionId": "<cloudflare-connection-id>",
    "environment": "dev",
    "secretPath": "/",
    "isAutoRotationEnabled": true,
    "rotationInterval": 30,
    "rotateAtUtc": { "hours": 0, "minutes": 0 },
    "parameters": {
      "name": "infisical-rotated-token",
      "policies": [
        {
          "effect": "allow",
          "scope": "zones",
          "zoneIds": ["<zone-id>"],
          "permissionGroupIds": ["<permission-group-id>"]
        }
      ],
      "allowedIps": ["203.0.113.0/24"]
    },
    "secretsMapping": {
      "tokenId": "CLOUDFLARE_API_TOKEN_ID",
      "apiToken": "CLOUDFLARE_API_TOKEN"
    }
  }'
```

## Sample response

```json theme={"dark"}
{
  "secretRotation": {
    "id": "<rotation-id>",
    "name": "my-cloudflare-rotation",
    "description": "Cloudflare API token rotation",
    "secretsMapping": {
      "tokenId": "CLOUDFLARE_API_TOKEN_ID",
      "apiToken": "CLOUDFLARE_API_TOKEN"
    },
    "isAutoRotationEnabled": true,
    "activeIndex": 0,
    "connectionId": "<cloudflare-connection-id>",
    "rotationInterval": 30,
    "rotateAtUtc": { "hours": 0, "minutes": 0 },
    "type": "cloudflare-api-token",
    "parameters": {
      "name": "infisical-rotated-token",
      "policies": [
        {
          "effect": "allow",
          "scope": "zones",
          "zoneIds": ["<zone-id>"],
          "permissionGroupIds": ["<permission-group-id>"]
        }
      ],
      "allowedIps": ["203.0.113.0/24"]
    }
  }
}
```


## OpenAPI

````yaml POST /api/v2/secret-rotations/cloudflare-api-token
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/cloudflare-api-token:
    post:
      tags:
        - Secret Rotations
      description: Create a Cloudflare API Token Rotation for the specified project.
      operationId: createCloudflareAPITokenRotation
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                  minLength: 1
                  maxLength: 64
                  description: >-
                    The name of the Cloudflare API Token Rotation to create.
                    Must be slug-friendly.
                projectId:
                  type: string
                  minLength: 1
                  description: The ID of the project to create the rotation in.
                description:
                  type: string
                  maxLength: 256
                  nullable: true
                  description: >-
                    An optional description for the Cloudflare API Token
                    Rotation.
                connectionId:
                  type: string
                  format: uuid
                  description: The ID of the Cloudflare Connection to use for rotation.
                environment:
                  type: string
                  minLength: 1
                  maxLength: 64
                  description: >-
                    The slug of the project environment to create the rotation
                    in.
                secretPath:
                  type: string
                  minLength: 1
                  description: The secret path of the project to create the rotation in.
                isAutoRotationEnabled:
                  type: boolean
                  default: true
                  description: >-
                    Whether secrets should be automatically rotated when the
                    specified rotation interval has elapsed.
                rotationInterval:
                  type: number
                  minimum: 1
                  description: The 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 hours and minutes rotation should occur at in UTC.
                    Defaults to Midnight (00:00) UTC.
                parameters:
                  type: object
                  properties:
                    name:
                      type: string
                      minLength: 1
                      maxLength: 100
                      description: The name for the generated Cloudflare API token.
                    policies:
                      type: array
                      items:
                        type: object
                        properties:
                          effect:
                            type: string
                            enum:
                              - allow
                              - deny
                          scope:
                            type: string
                            enum:
                              - account
                              - all-zones
                              - zones
                          zoneIds:
                            type: array
                            items:
                              type: string
                          permissionGroupIds:
                            type: array
                            items:
                              type: string
                            minItems: 1
                        required:
                          - effect
                          - scope
                          - permissionGroupIds
                        additionalProperties: false
                      minItems: 1
                      description: >-
                        The access policies to attach to the generated
                        Cloudflare API token. Each policy scopes a set of
                        permission groups to the entire account, to all zones in
                        the account, or to a specific set of zones.
                    allowedIps:
                      type: array
                      items:
                        type: string
                      description: >-
                        The IP addresses or CIDR blocks the generated Cloudflare
                        API token is restricted to.
                    disallowedIps:
                      type: array
                      items:
                        type: string
                      description: >-
                        The IP addresses or CIDR blocks the generated Cloudflare
                        API token is denied from.
                  required:
                    - name
                    - policies
                  additionalProperties: false
                secretsMapping:
                  type: object
                  properties:
                    tokenId:
                      type: string
                      minLength: 1
                      description: >-
                        The name of the secret that the rotated Cloudflare API
                        token ID will be mapped to.
                    apiToken:
                      type: string
                      minLength: 1
                      description: >-
                        The name of the secret that the rotated Cloudflare API
                        token value will be mapped to.
                  required:
                    - tokenId
                    - apiToken
                  additionalProperties: false
              required:
                - name
                - projectId
                - connectionId
                - environment
                - secretPath
                - rotationInterval
                - parameters
                - secretsMapping
              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:
                              - cloudflare
                          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:
                          - cloudflare-api-token
                      parameters:
                        type: object
                        properties:
                          name:
                            type: string
                            minLength: 1
                            maxLength: 100
                            description: The name for the generated Cloudflare API token.
                          policies:
                            type: array
                            items:
                              type: object
                              properties:
                                effect:
                                  type: string
                                  enum:
                                    - allow
                                    - deny
                                scope:
                                  type: string
                                  enum:
                                    - account
                                    - all-zones
                                    - zones
                                zoneIds:
                                  type: array
                                  items:
                                    type: string
                                permissionGroupIds:
                                  type: array
                                  items:
                                    type: string
                                  minItems: 1
                              required:
                                - effect
                                - scope
                                - permissionGroupIds
                              additionalProperties: false
                            minItems: 1
                            description: >-
                              The access policies to attach to the generated
                              Cloudflare API token. Each policy scopes a set of
                              permission groups to the entire account, to all
                              zones in the account, or to a specific set of
                              zones.
                          allowedIps:
                            type: array
                            items:
                              type: string
                            description: >-
                              The IP addresses or CIDR blocks the generated
                              Cloudflare API token is restricted to.
                          disallowedIps:
                            type: array
                            items:
                              type: string
                            description: >-
                              The IP addresses or CIDR blocks the generated
                              Cloudflare API token is denied from.
                        required:
                          - name
                          - policies
                        additionalProperties: false
                      secretsMapping:
                        type: object
                        properties:
                          tokenId:
                            type: string
                            minLength: 1
                            description: >-
                              The name of the secret that the rotated Cloudflare
                              API token ID will be mapped to.
                          apiToken:
                            type: string
                            minLength: 1
                            description: >-
                              The name of the secret that the rotated Cloudflare
                              API token value will be mapped to.
                        required:
                          - tokenId
                          - apiToken
                        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

````