docs/documentation/platform/secret-rotation/convex-access-key.mdx
This rotation maintains two active credential sets with overlapping validity, ensuring zero-downtime during rotation cycles. </Note>
2. Select the **Convex Access Key** option.

3. Select the **Convex Connection** to use and configure the rotation behavior. Then click **Next**.

- **Convex Connection** - the connection that will create and delete access keys during rotation.
- **Rotation Interval** - the interval, in days, that once elapsed will trigger a rotation.
- **Rotate At** - the local time of day when rotation should occur once the interval has elapsed.
- **Auto-Rotation Enabled** - whether secrets should automatically be rotated once the rotation interval has elapsed. Disable this option to manually rotate secrets or pause secret rotation.
4. Set the access key parameters. Then click **Next**.

- **Name Prefix** - a prefix used when naming the generated access keys in Convex (e.g. `infisical`). A timestamp is appended to ensure uniqueness.
5. Specify the secret name that the rotated access key will be mapped to. Then click **Next**.

- **Access Key** - the name of the secret that the rotated Convex access key will be mapped to.
6. Give your rotation a name and description (optional). Then click **Next**.

- **Name** - the name of the secret rotation configuration. Must be slug-friendly.
- **Description** (optional) - a description of this rotation configuration.
7. Review your configuration, then click **Create Secret Rotation**.

8. Your **Convex Access Key** rotation is created. The current access key is available as a secret at the mapped path.

</Tab>
<Tab title="API">
To create a Convex Access Key Rotation, make an API request to the [Create Convex
Access Key Rotation](/api-reference/endpoints/secret-rotations/convex-access-key/create) API endpoint.
### Sample request
```bash Request
curl --request POST \
--url https://us.infisical.com/api/v2/secret-rotations/convex-access-key \
--header 'Content-Type: application/json' \
--data '{
"name": "my-convex-rotation",
"projectId": "<project-id>",
"description": "Convex access key rotation",
"connectionId": "<convex-connection-id>",
"environment": "dev",
"secretPath": "/",
"isAutoRotationEnabled": true,
"rotationInterval": 30,
"rotateAtUtc": {
"hours": 0,
"minutes": 0
},
"parameters": {
"namePrefix": "infisical"
},
"secretsMapping": {
"accessKey": "CONVEX_ACCESS_KEY"
}
}'
```
### Sample response
```bash Response
{
"secretRotation": {
"id": "<rotation-id>",
"name": "my-convex-rotation",
"description": "Convex access key rotation",
"secretsMapping": {
"accessKey": "CONVEX_ACCESS_KEY"
},
"isAutoRotationEnabled": true,
"activeIndex": 0,
"connectionId": "<convex-connection-id>",
"rotationInterval": 30,
"rotateAtUtc": {
"hours": 0,
"minutes": 0
},
"type": "convex-access-key",
"parameters": {
"namePrefix": "infisical"
}
}
}
```
</Tab>