Skip to main content
Platform Operations/Platforms
POSTPlatformSince 1.0SynchronousAuth Required

RotateAccessKeys

Rotate access keys for a platform and return the new credentials.

Execution Availability

Try It Out

Submit a mock request using the current auth context and example-driven inputs.

Path Parameters

Request Inputs

Path Parameters

  • uuidStringRequired

    UUID of the platform whose access keys should be rotated

Responses

200 OK

On success, this API returns the following response structure.

  • accessKeyIdString

    New access key ID after rotation

    Example: AKID9876543210

  • accessKeySecretString

    New access key secret after rotation

    Example: new-secret-value-abc

Endpoint

POST/api/v1/platforms/{uuid}/rotate-keys

/api/v1/platforms/{uuid}/rotate-keys

Operation ID

RotateAccessKeys

Permalink

Request Example

curl -X POST '{host}/api/v1/platforms/{uuid}/rotate-keys' -H 'Authorization: Bearer {token}' -H 'Content-Type: application/json' -d '{"key": "value"}'

Response Example

200
{
  "accessKeyId": "AKID9876543210",
  "accessKeySecret": "new-secret-value-abc"
}

Change History

This API has no change history records yet.

View all change history