Gets the configuration details for system signing Git objects.
Forge and OAuth2 apps cannot access this REST resource.
This request has no parameters.
The configuration details for system signing Git objects
1
2
3
curl --request GET \
--url 'http://{baseurl}/rest/api/latest/system-signing/configuration' \
--header 'Accept: application/json'
1
2
3
{
"enabled": false
}
Updates the configuration for system signing Git objects.
Forge and OAuth2 apps cannot access this REST resource.
boolean
The updated configuration details for system signing Git objects
1
2
3
4
5
6
7
curl --request POST \
--url 'http://{baseurl}/rest/api/latest/system-signing/configuration' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
"enabled": false
}'
1
2
3
{
"enabled": false
}
Rate this page: