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

<AgentInstructions>

## Submitting Feedback

If you encounter incorrect, outdated, or confusing documentation on this page, submit feedback:

POST https://developers.fireblocks.com/feedback

```json
{
  "path": "/docs/mandatory-fields-for-bitstamp-deposits",
  "feedback": "Description of the issue"
}
```

Only submit feedback when you have something specific and actionable to report.

</AgentInstructions>

# Mandatory fields for Bitstamp deposits

## Originator: Myself (Individual)

<CodeGroup>
  ```bash bash theme={"system"}
  {
    "piiData": {
      "type": "exchange-service-travel-rule",
      "typeVersion": "1.0.0",
      "data": {
        "originator": {
          "participantRelationshipType": "FirstParty",
          "entityType": "Individual",
          "names": [
            {
              "primaryName": "John",
              "nameType": "Latin",
              "secondaryName": "Doe"
            }
          ],
          "dateOfBirth": "2000-01-01",
          "postalAddress": {
            "streetName": "Oak street",
            "buildingNumber": "1",
            "city": "Boston",
            "postalCode": "02001",
            "country": "US"
          }
        },
        "originatingVASP": {
          "vaspCode": "914a9dae-4234-45d1-be83-fd40e818e381"
        }
      }
    }
  }
  ```
</CodeGroup>

## Originator: Myself (Corporate)

<CodeGroup>
  ```bash bash theme={"system"}
  {
    "piiData": {
      "type": "exchange-service-travel-rule",
      "typeVersion": "1.0.0",
      "data": {
        "originator": {
          "participantRelationshipType": "FirstParty",
          "entityType": "Business",
          "postalAddress": {
            "streetName": "Oak street",
            "buildingNumber": "1",
            "city": "Boston",
            "postalCode": "02001",
            "country": "US"
          },
          "company": {
            "name": "ACME Inc"
          }
        },
        "originatingVASP": {
          "vaspCode": "914a9dae-4234-45d1-be83-fd40e818e381"
        }
      }
    }
  }
  ```
</CodeGroup>

## Originator: Third party (Individual)

<CodeGroup>
  ```bash bash theme={"system"}
  {
    "piiData": {
      "type": "exchange-service-travel-rule",
      "typeVersion": "1.0.0",
      "data": {
        "originator": {
          "participantRelationshipType": "ThirdParty",
          "entityType": "Individual",
          "postalAddress": {
            "streetName": "Oak street",
            "buildingNumber": "1",
            "city": "Boston",
            "postalCode": "02001",
            "country": "US"
          },
          "names": [
            {
              "primaryName": "John",
              "nameType": "Latin",
              "secondaryName": "Doe"
            }
          ],
          "dateOfBirth": "2000-01-01"
        },
        "originatingVASP": {
          "vaspCode": "914a9dae-4234-45d1-be83-fd40e818e381"
        }
      }
    }
  }
  ```
</CodeGroup>

## Originator: Third party (Corporate)

<CodeGroup>
  ```bash bash theme={"system"}
  {
    "piiData": {
      "type": "exchange-service-travel-rule",
      "typeVersion": "1.0.0",
      "data": {
        "originator": {
          "participantRelationshipType": "ThirdParty",
          "entityType": "Business",
          "postalAddress": {
            "streetName": "Oak street",
            "buildingNumber": "1",
            "city": "Boston",
            "postalCode": "02001",
            "country": "US"
          },
          "company": {
            "name": "ACME Inc"
          }
        },
        "originatingVASP": {
          "vaspCode": "914a9dae-4234-45d1-be83-fd40e818e381"
        }
      }
    }
  }
  ```
</CodeGroup>
