Skip to main content
Infrastructure/Agents
GETAgentSince 1.0SynchronousAuth Required

GetLockConfig

Retrieve the global lock configuration including TTL defaults and auto-release settings

Execution Availability

Try It Out

Submit a mock request using the current auth context and example-driven inputs.

Request Inputs

This API requires no request parameters.

Responses

200 OK

On success, this API returns the following response structure.

  • defaultTtlSecondsInteger

    Default lock TTL in seconds if not specified at acquire time

    Example: 300

  • maxTtlSecondsInteger

    Maximum allowed TTL in seconds for any lock

    Example: 3600

  • autoReleaseEnabledBoolean

    Whether expired locks are automatically released by the system

    Example: true

Endpoint

GET/api/v1/agents/locks/config

/api/v1/agents/locks/config

Operation ID

GetLockConfig

Permalink

Request Example

curl -X GET '{host}/api/v1/agents/locks/config' -H 'Authorization: Bearer {token}'

Response Example

200
{
  "defaultTtlSeconds": 300,
  "maxTtlSeconds": 3600,
  "autoReleaseEnabled": true
}

Change History

This API has no change history records yet.

View all change history