POST Codesign/SetGlobalConfiguration

Updates global configuration settings for CodeSign Protect.

Requirements

  • Permissions:  The caller must be a Code Signing Administrator.
  • Token scope:  Codesign:Manage

Headers

  • Content type: Content-Type:application/json.

  • Token: The bearer access token that you received. For example, Authorization:Bearer 4MyGeneratedBearerTknz==. For more information, see Passing a bearer token in your API calls.

Parameters

Input parameters

Name

Description

GlobalConfiguration

The set of Policy tree locations and user settings:

  • ApprovedKeyStorageLocations: An Items array of key storage locations that are approved for use with CodeSign Protect. This information is also available in the Encryption tree.
  • AvailableKeyStorageLocations: An array of all available key storage locations, such as HSM and Venafi key storage locations.
  • DefaultCAContainer: The default Distinguished Name (DN) or container where CodeSign Protect creates and stores CA templates.
  • DefaultCertificateContainer: The default DN or container that holds certificate objects.
  • DefaultCredentialContainer: The default DN  or container that holds credentials.
  • KeyUseTimeout: Default 120. The number of seconds a client should wait for a response when attempting to use a key.
  • ProjectDescriptionTooltip: A description that appears when a project owner is creating a project.
  • RequestInProgressMessage: The message that appears when a KeyUser attempts to access a key that requires approval.

Returns

Response description

Name

Description

HTTP 200

For valid requests, this call returns a HTTP 200 message and the following data in the message body:

  • Error: Appears only when Success is false. An error message that accompanies the Result. Check your payload input values.

  • Result: The Result code of this API call. For more information, see Sign Result Codes.

  • Success: The result of this API call: A value of false indicates the request failed due to an Error. Otherwise, true.

HTTP 400

For invalid requests, this call returns HTTP 400 Bad Request and the following data in the message body:

  • error: The reason for the error.
  • error_description: If available, additional information about how to retry the request.

Example: Change the default KeyUseTimeout value for every project

Request

POST https://codesign.venafi.example/vedsdk/Codesign/SetGlobalConfiguration
Authorization:Bearer 4MyGeneratedBearerTknz==
{
   "GlobalConfiguration":{
      "ApprovedKeyStorageLocations":{
         "Items":[
            "Software"
         ]
      },
      "AvailableKeyStorageLocations":[
         "Software"
      ],
      "DefaultCAContainer":"\\VED\\Policy\\Code Signing\\Certificate Authority Templates",
      "DefaultCertificateContainer":"\\VED\\Policy\\Code Signing\\Certificates",
      "DefaultCredentialContainer":"\\VED\\Policy\\Code Signing\\Credentials",
      "KeyUseTimeout":60,
      "ProjectDescriptionTooltip":"",
      "RequestInProgressMessage":""
   }
HTTP/1.1 200 OK
{
    "Result": 1,
    "Success": true
}