Skip to main content
POST
/
counterparty_groups
TypeScript
const response: Promise<FireblocksResponse<CounterpartyGroup>> = fireblocks.compliance.createCounterpartyGroup(complianceApiCreateCounterpartyGroupRequest);
{
  "groupId": "44fcead0-7053-4831-a53a-df7fb90d440f",
  "name": "APAC Financial Partners",
  "isActive": true,
  "createdAt": "2024-01-15T10:30:00Z",
  "updatedAt": "2024-01-15T10:30:00Z",
  "description": "Group for all APAC-based financial institution counterparties",
  "jurisdictionCodes": [
    "US",
    "SG"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://developers.fireblocks.com/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 creating a new counterparty group

name
string
required

Human-readable name of the group

Minimum string length: 1
Example:

"APAC Financial Partners"

jurisdictionCodes
string[]
required

List of jurisdiction codes to associate with the group

Example:
["US", "SG"]
description
string

Optional description of the group

Example:

"Group for all APAC-based financial institution counterparties"

Response

Counterparty group created successfully

A counterparty group used to classify counterparties for compliance and routing purposes

groupId
string<uuid>
required

Unique identifier of the counterparty group

Example:

"44fcead0-7053-4831-a53a-df7fb90d440f"

name
string
required

Human-readable name of the group

Minimum string length: 1
Example:

"APAC Financial Partners"

isActive
boolean
required

Whether the counterparty group is currently active

Example:

true

createdAt
string<date-time>
required

ISO 8601 timestamp when the group was created

Example:

"2024-01-15T10:30:00Z"

updatedAt
string<date-time>
required

ISO 8601 timestamp when the group was last updated

Example:

"2024-01-15T10:30:00Z"

description
string

Optional description of the group

Example:

"Group for all APAC-based financial institution counterparties"

jurisdictionCodes
string[]

List of jurisdiction codes associated with the group

Example:
["US", "SG"]