Table of Contents

Search

  1. Preface
  2. Informatica Intelligent Cloud Services REST API
  3. Platform REST API version 2 resources
  4. Platform REST API version 3 resources
  5. Data Integration REST API
  6. Mass Ingestion Files REST API
  7. Mass Ingestion Streaming REST API
  8. Model Serve REST API
  9. RunAJob utility
  10. ParamSetCli utility
  11. REST API codes
  12. REST API resource quick references

REST API Reference

REST API Reference

Changing key rotation intervals

Changing key rotation intervals

You can use the key resource to change the key rotation interval for the organization.

PATCH request

To change the key rotation interval, send a PATCH request using the following URI:
/public/core/v3/key/rotationSettings
Include the following information:
Field
Type
Required
Description
rotationInterval
String
Yes
The key rotation interval to use for the organization. Use one of the following values:
  • 90_DAYS
  • 120_DAYS
  • 180_DAYS
  • 365_DAYS
Default is 365_DAYS.

PATCH response

Returns a success code if successful or an error object if errors occur.

PATCH example

To change the key rotation interval for an organization, you might send a request similar to the following example:
POST <baseApiUrl>/public/core/v3/key/rotationSettings Content-Type: application/json Accept: application/json INFA-SESSION-ID: <sessionId> { "rotationInterval": "120_DAYS" }

0 COMMENTS

We’d like to hear from you!