Skip to main content

Documentation Index

Fetch the complete documentation index at: https://paxos-0ac97319-preview-travel-rule-api-changes.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

A Travel Rule Information Required error is returned by transaction endpoints when Travel Rule data is required for the destination address but has not been collected. Endpoints that can return this error: Create Crypto Withdrawal, Create Crypto Withdrawal Fee, Create Orchestration, Create Orchestration Rule. A Travel Rule Information Required error has the following meta fields:
  • identity_id: The Identity the destination address is scoped to, if any.
  • crypto_network: The blockchain network of the destination.
  • address: The blockchain destination address.
To resolve this error, call Put Crypto Destination Address with travelrule_metadata populated for the same (identity_id, crypto_network, address), then retry the original request unchanged.
{
  "detail": "Travel Rule information is required for this destination: call PutCryptoDestinationAddress with travel_rule_metadata populated and retry",
  "meta": {
    "identity_id": "f304e9c8-e5d9-4e5e-8f3c-123456789abc",
    "crypto_network": "ETHEREUM",
    "address": "0xe4B0aCA9FB669817775274775b20e52118595515"
  },
  "status": 403,
  "title": "Travel Rule Information Required",
  "type": "https://developer.paxos.com/docs/v2/problems/travel-rule-information-required"
}