Skip to main content
POST
/
screening
/
byork
/
verdict
TypeScript
const response: Promise<FireblocksResponse<ByorkVerdictResponse>> = fireblocks.compliance.setByorkVerdict(complianceApiSetByorkVerdictRequest);
{
  "status": "COMPLETED",
  "message": "Verdict ACCEPT applied"
}

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
txId
string
required

Transaction ID to set the verdict for

Example:

"550e8400-e29b-41d4-a716-446655440000"

verdict
enum<string>
required

Verdict to apply (ACCEPT or REJECT).

Available options:
ACCEPT,
REJECT
Example:

"ACCEPT"

Response

Verdict applied (COMPLETED) or pre-accepted (PRE_ACCEPTED).

status
enum<string>
required

PRE_ACCEPTED - Verdict stored and will be applied when processing reaches the point where your decision is needed. COMPLETED - Verdict final and processing complete. PENDING - Transaction in BYORK flow; no final verdict yet (awaiting decision or processing). RECEIVED - Verdict final and stored; processing not yet complete.

Available options:
PRE_ACCEPTED,
COMPLETED,
PENDING,
RECEIVED
Example:

"COMPLETED"

message
string
required

Human-readable message

Example:

"Verdict ACCEPT applied"