Skip to main content
PUT
/
screening
/
byork
/
config
/
timeouts
TypeScript
const response: Promise<FireblocksResponse<ByorkConfigResponse>> = fireblocks.compliance.setByorkTimeouts(complianceApiSetByorkTimeoutsRequest);
{
  "incomingTimeoutSeconds": 86400,
  "outgoingTimeoutSeconds": 3600,
  "active": true,
  "provider": "BYORK_LITE",
  "lastUpdate": "2026-01-29T12:00:00.000Z",
  "timeoutRangeIncoming": {
    "minSeconds": 10,
    "maxSeconds": 604800
  },
  "timeoutRangeOutgoing": {
    "minSeconds": 10,
    "maxSeconds": 604800
  }
}

Documentation Index

Fetch the complete documentation index at: https://fireblocks-43c4b3ee-chore-add-cli.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Headers

Idempotency-Key
string

A unique identifier for the request. If the request is sent multiple times with the same idempotency key, the server will return the same response as the first request. The idempotency key is valid for 24 hours.

Body

application/json

Request body for setting BYORK timeout values. At least one of incomingTimeoutSeconds or outgoingTimeoutSeconds is required. Allowed range per direction is returned in GET config (timeoutRangeIncoming, timeoutRangeOutgoing).

incomingTimeoutSeconds
integer

Timeout in seconds for incoming BYORK wait-for-response. Allowed range in GET config (timeoutRangeIncoming).

Example:

86400

outgoingTimeoutSeconds
integer

Timeout in seconds for outgoing BYORK wait-for-response. Allowed range in GET config (timeoutRangeOutgoing).

Example:

3600

Response

Timeouts updated.

BYORK Light configuration for the tenant: wait-for-response timeouts, active flag, provider, last update time, and allowed timeout ranges for validation.

incomingTimeoutSeconds
integer

Timeout in seconds for incoming BYORK wait-for-response

Example:

86400

outgoingTimeoutSeconds
integer

Timeout in seconds for outgoing BYORK wait-for-response

Example:

3600

active
boolean

Whether BYORK Light is active for the tenant

Example:

true

provider
string

Provider identifier

Example:

"BYORK_LITE"

lastUpdate
string<date-time>

Last update timestamp of the configuration

Example:

"2026-01-29T12:00:00.000Z"

timeoutRangeIncoming
object

Allowed range for timeout values (seconds). Use when calling PUT config/timeouts.

timeoutRangeOutgoing
object

Allowed range for timeout values (seconds). Use when calling PUT config/timeouts.