Skip to main content
GET
/
v1
/
condition_sets
/
{condition_set_id}
Get Condition Set
curl --request GET \
  --url https://api.privy.io/v1/condition_sets/{condition_set_id} \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'privy-app-id: <privy-app-id>'
{
  "id": "qvah5m2hmp9abqlxdmfiht95",
  "name": "Approved Recipients",
  "owner_id": "asgkan0r7gi0wdbvf9cw8qio",
  "created_at": 1761271537642
}

Authorizations

Authorization
string
header
required

Basic Auth header with your app ID as the username and your app secret as the password.

Headers

privy-app-id
string
required

ID of your Privy app.

Path Parameters

condition_set_id
string
required
Required string length: 24

Response

200 - application/json

Requested condition set object.

id
string
required

Unique ID of the created condition set. This will be the primary identifier when using the condition set in the future.

Required string length: 24
name
string
required

Name of the condition set.

Required string length: 1 - 100
owner_id
string
required

The key quorum ID of the owner of the condition set.

created_at
number
required

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