class Peddler::API::ApplicationManagement20231130

Selling Partner API for Application Management

The Selling Partner API for Application Management lets you programmatically update the client secret on registered applications.

Public Instance Methods

rotate_application_client_secret(rate_limit: 0.0167) click to toggle source

Rotates application client secrets for a developer application. Developers must register a destination queue in the developer console before calling this operation. When this operation is called a new client secret is generated and sent to the developer-registered queue. For more information, refer to [Rotate your application client secret](developer-docs.amazon.com/sp-api/v0/docs/application-management-api-v2023-11-30-use-case-guide#tutorial-rotate-your-applications-client-secret).

@param rate_limit [Float] Requests per second @return [Hash] The API response

# File lib/peddler/api/application_management_2023_11_30.rb, line 26
def rotate_application_client_secret(rate_limit: 0.0167)
  cannot_sandbox!

  path = "/applications/2023-11-30/clientSecret"

  meter(rate_limit).post(path)
end