Skip to main content
PATCH
/
v1
/
apps
/
{app_id}
/
intents
/
policies
/
{policy_id}
Create policy update intent
curl --request PATCH \
  --url https://api.privy.io/v1/apps/{app_id}/intents/policies/{policy_id} \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --header 'privy-app-id: <privy-app-id>' \
  --data '{
  "name": "<string>",
  "rules": [
    {
      "name": "<string>",
      "method": "eth_sendTransaction",
      "conditions": [
        {
          "field_source": "ethereum_transaction",
          "field": "to",
          "operator": "eq",
          "value": "<string>"
        }
      ],
      "action": "ALLOW"
    }
  ],
  "owner": {
    "public_key": "<string>"
  },
  "owner_id": "<string>"
}'
{
  "intent_id": "<string>",
  "created_by_display_name": "<string>",
  "created_by_id": "<string>",
  "created_at": 123,
  "resource_id": "<string>",
  "authorization_details": [
    {
      "members": [
        {
          "type": "user",
          "user_id": "<string>",
          "display_name": "<string>",
          "has_signed": true
        }
      ],
      "threshold": 123,
      "display_name": "<string>"
    }
  ],
  "status": "pending",
  "expires_at": 123,
  "intent_type": "POLICY",
  "request_details": {
    "method": "PATCH",
    "url": "<string>",
    "body": {
      "name": "<string>",
      "rules": [
        {
          "name": "<string>",
          "method": "eth_sendTransaction",
          "conditions": [
            {
              "field_source": "ethereum_transaction",
              "field": "to",
              "operator": "eq",
              "value": "<string>"
            }
          ],
          "action": "ALLOW"
        }
      ],
      "owner": {
        "public_key": "<string>"
      },
      "owner_id": "<string>"
    }
  },
  "current_resource_data": {
    "version": "1.0",
    "name": "<string>",
    "chain_type": "ethereum",
    "id": "<string>",
    "owner_id": "<string>",
    "created_at": 123,
    "rules": [
      {
        "id": "rule_123",
        "name": "Allowlist USDC contract on Base",
        "method": "eth_sendTransaction",
        "conditions": [
          {
            "field_source": "ethereum_transaction",
            "field": "to",
            "operator": "eq",
            "value": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
          }
        ],
        "action": "ALLOW"
      }
    ]
  },
  "action_result": {
    "status_code": 123,
    "executed_at": 123,
    "authorized_by_display_name": "<string>",
    "authorized_by_id": "<string>",
    "response_body": {
      "version": "1.0",
      "name": "<string>",
      "chain_type": "ethereum",
      "id": "<string>",
      "owner_id": "<string>",
      "created_at": 123,
      "rules": [
        {
          "id": "rule_123",
          "name": "Allowlist USDC contract on Base",
          "method": "eth_sendTransaction",
          "conditions": [
            {
              "field_source": "ethereum_transaction",
              "field": "to",
              "operator": "eq",
              "value": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
            }
          ],
          "action": "ALLOW"
        }
      ]
    },
    "prior_state": {
      "version": "1.0",
      "name": "<string>",
      "chain_type": "ethereum",
      "id": "<string>",
      "owner_id": "<string>",
      "created_at": 123,
      "rules": [
        {
          "id": "rule_123",
          "name": "Allowlist USDC contract on Base",
          "method": "eth_sendTransaction",
          "conditions": [
            {
              "field_source": "ethereum_transaction",
              "field": "to",
              "operator": "eq",
              "value": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
            }
          ],
          "action": "ALLOW"
        }
      ]
    }
  }
}

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

app_id
string
required

ID of the app.

policy_id
string
required

ID of the policy.

Body

application/json
name
string

Name to assign to policy.

Required string length: 1 - 50
rules
PolicyRuleRequestBody · object[]
owner

The owner of the resource. If you provide this, do not specify an owner_id as it will be generated automatically. When updating a wallet, you can set the owner to null to remove the owner. The P-256 public key of the owner of the resource, in base64-encoded DER format. If you provide this, do not specify an owner_id as it will be generated automatically.

owner_id
string

The key quorum ID to set as the owner of the resource. If you provide this, do not specify an owner.

Response

200 - application/json

Created policy update intent.

Response for a policy update intent creation request

intent_id
string
required

Unique ID for the intent

created_by_display_name
string
required

Display name of the user who created the intent

created_at
number
required

Unix timestamp when the intent was created

resource_id
string
required

ID of the resource being modified (wallet_id, policy_id, etc)

authorization_details
object[]
required

Detailed authorization information including key quorum members, thresholds, and signature status

status
enum<string>
required

Current status of the intent

Available options:
pending,
executed,
failed,
expired,
rejected
expires_at
number
required

Unix timestamp when the intent expires

intent_type
enum<string>
required
Available options:
POLICY
request_details
object
required

The original policy update request that would be sent to the policy endpoint

created_by_id
string

ID of the user who created the intent. If undefined, the intent was created using the app secret

current_resource_data
object

Current state of the policy before any changes. If undefined, the resource was deleted and no longer exists

action_result
object

Result of policy update execution (only present if status is 'executed' or 'failed')