GET Codesign/GetGlobalConfiguration
Returns settings that apply to all CodeSign Protect projects.
Requirements
- Permissions: The caller is not required to have any special permissions.
- 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
None
Returns
|
Name |
Description |
|---|---|
|
HTTP 200 |
For valid requests, this call returns a HTTP 200 message and the following data in the message body:
|
|
HTTP 400 |
For invalid requests, this call returns HTTP 400 Bad Request and the following data in the message body:
|
Example: Get default information that applies to all projects
Request
GET https://codesign.venafi.example/vedsdk/Codesign/GetGlobalConfiguration
Response
HTTP/1.1 200 OK
{
"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":120,
"ProjectDescriptionTooltip":"",
"RequestInProgressMessage":""
},
"Result":1,
"Success":true
}