v46

latestOpenAPI 3.1.0raw.githubusercontent.com2026-07-211591,0051.4 MB
Policies

Create Condition Set Items

Replace all items in a condition set by condition set ID. Can add up to 100 items at once.

put/v1/condition_sets/{condition_set_id}/condition_set_items

Path parameters

condition_set_idstring required

Headers

privy-app-idstring required

ID of your Privy app.

privy-authorization-signaturestring

Request authorization signature. If multiple signatures are required, they should be comma separated.

privy-request-expirystring

Request expiry. Value is a Unix timestamp in milliseconds representing the deadline by which the request must be processed.

Request body

valuestring required

Response

Array of condition set items after replacement.

condition_set_idstring required

Unique ID of the condition set this item belongs to.

created_atnumber required

Unix timestamp of when the condition set item was created in milliseconds.

idstring required

Unique ID of the created condition set item.

valuestring required

The value stored in this condition set item.

Example response

[
  {
    "condition_set_id": "qvah5m2hmp9abqlxdmfiht95",
    "created_at": 1761271537642,
    "id": "abc123xyz456def789ghi012",
    "value": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb"
  }
]