> ## 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.

# Mandatory fields for OKex withdrawals

## Private wallet (Individual)

<CodeGroup>
  ```json Individual theme={"system"}
  {
    "piiData": {
      "type": "exchange-service-travel-rule",
      "typeVersion": "1.0.0",
      "data": {
        "beneficiary": {
          "isHosted": "false",
          "entityType": "Individual"
        }
      }
    }
  }
  ```
</CodeGroup>

## Private wallet (Corporate)

<CodeGroup>
  ```json Business theme={"system"}
  {
    "piiData": {
      "type": "exchange-service-travel-rule",
      "typeVersion": "1.0.0",
      "data": {
        "beneficiary": {
          "isHosted": "false",
          "entityType": "Business"
        }
      }
    }
  }
  ```
</CodeGroup>

## Hosted wallet/Exchange (Individual) - VASP exists

<CodeGroup>
  ```json Individual theme={"system"}
  {
    "piiData": {
      "type": "exchange-service-travel-rule",
      "typeVersion": "1.0.0",
      "data": {
        "beneficiary": {
          "isHosted": "true",
          "entityType": "Individual",
          "names": [
            {
              "primaryName": "John",
              "nameType": "Latin",
              "secondaryName": "Doe"
            }
          ],
          "postalAddress": {
            "streetName": "Oak",
            "buildingNumber": "1",
            "city": "Boston",
            "postalCode": "11000",
            "subdivision": "Massachusetts",
            "country": "US"
          }
        },
        "beneficiaryVASP": {
          "vaspCode": "did:ethr:0xf2bd35dc59cbbe3efb15a5bd411ac84e7c86d25a"
        }
      }
    }
  }
  ```
</CodeGroup>

## Hosted wallet/Exchange (Individual) - Custom VASP

<CodeGroup>
  ```json Individual theme={"system"}
  {
    "piiData": {
      "type": "exchange-service-travel-rule",
      "typeVersion": "1.0.0",
      "data": {
        "beneficiary": {
          "isHosted": "true",
          "entityType": "Individual",
          "names": [
            {
              "primaryName": "John",
              "nameType": "Latin",
              "secondaryName": "Doe"
            }
          ],
          "postalAddress": {
            "streetName": "Oak",
            "buildingNumber": "1",
            "city": "Boston",
            "postalCode": "11000",
            "subdivision": "Massachusetts",
            "country": "US"
          }
        },
        "beneficiaryVASP": {
          "vaspCode": "-2",
          "vaspName": "ACME VASP"
        }
      }
    }
  }
  ```
</CodeGroup>

## Hosted wallet/Exchange (Corporate) - VASP exists

<CodeGroup>
  ```json Third party theme={"system"}
  {
    "piiData": {
      "type": "exchange-service-travel-rule",
      "typeVersion": "1.0.0",
      "data": {
        "beneficiary": {
          "isHosted": "true",
          "entityType": "Business",
          "postalAddress": {
            "streetName": "Oak",
            "buildingNumber": "1",
            "city": "Boston",
            "postalCode": "11000",
            "subdivision": "Massachusetts",
            "country": "US"
          },
          "company": {
            "name": "ACME Inc"
          }
        },
        "beneficiaryVASP": {
          "vaspCode": "did:ethr:0xfeb4f99829a9acdf52979abee87e83addf22a7e1"
        }
      }
    }
  }
  ```
</CodeGroup>

## Hosted wallet/Exchange (Corporate) - Custom VASP

<CodeGroup>
  ```json Third party theme={"system"}
  {
    "piiData": {
      "type": "exchange-service-travel-rule",
      "typeVersion": "1.0.0",
      "data": {
        "beneficiary": {
          "isHosted": "true",
          "entityType": "Business",
          "postalAddress": {
            "streetName": "Oak",
            "buildingNumber": "1",
            "city": "Boston",
            "postalCode": "11000",
            "subdivision": "Massachusetts",
            "country": "US"
          },
          "company": {
            "name": "ACME Inc"
          }
        },
        "beneficiaryVASP": {
          "vaspCode": "-2",
          "vaspName": "ACME VASP"
        }
      }
    }
  }
  ```
</CodeGroup>
