> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cdp.coinbase.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Submit Deposit Travel Rule Data

> Submit travel rule data for an existing deposit transaction.



## OpenAPI

````yaml post /v1/portfolios/{portfolio_id}/transactions/{transaction_id}/travel_rule/deposit
openapi: 3.0.1
info:
  title: REST API
  description: >-
    The Coinbase Prime REST API provides programmatic access to trading,
    custody, staking, market data, and account management functionality.
  version: '0.1'
servers:
  - url: https://api.prime.coinbase.com/
security: []
tags:
  - name: PrimeRESTAPI
paths:
  /v1/portfolios/{portfolio_id}/transactions/{transaction_id}/travel_rule/deposit:
    post:
      tags:
        - Travel Rule
      summary: Submit Deposit Travel Rule Data
      description: Submit travel rule data for an existing deposit transaction.
      operationId: PrimeRESTAPI_SubmitDepositTravelRuleData
      parameters:
        - name: portfolio_id
          in: path
          description: The portfolio ID that owns the transaction
          required: true
          schema:
            type: string
        - name: transaction_id
          in: path
          description: The transaction ID associated with the entry
          required: true
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              title: >-
                Request to submit travel rule data for an existing deposit
                transaction
              type: object
              properties:
                originator:
                  $ref: >-
                    #/components/schemas/coinbase.public_rest_api.TravelRuleParty
                beneficiary:
                  $ref: >-
                    #/components/schemas/coinbase.public_rest_api.TravelRuleParty
                is_self:
                  title: |-
                    True if user owns the counterparty address (self-transfer)
                    If false, beneficiary is required
                  type: boolean
                opt_out_of_ownership_verification:
                  title: True to skip wallet ownership verification
                  type: boolean
        required: true
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/coinbase.public_rest_api.SubmitDepositTravelRuleDataResponse
components:
  schemas:
    coinbase.public_rest_api.TravelRuleParty:
      type: object
      properties:
        name:
          title: Legal name (for entities or simple name format)
          type: string
        natural_person_name:
          $ref: '#/components/schemas/coinbase.public_rest_api.NaturalPersonName'
        address:
          $ref: '#/components/schemas/coinbase.public_rest_api.DetailedAddress'
        wallet_type:
          $ref: '#/components/schemas/coinbase.public_rest_api.TravelRuleWalletType'
        vasp_id:
          title: VASP identifier when wallet_type is VASP
          type: string
        vasp_name:
          title: VASP name fallback when vasp_id is unknown
          type: string
        personal_id:
          type: string
          description: |-
            Personal identifier for travel rule compliance.
            For individuals: passport number, national ID, driver's license.
            For institutions: LEI (Legal Entity Identifier).
        date_of_birth:
          $ref: '#/components/schemas/google.type.Date'
        telephone_number:
          type: string
          description: Telephone number for contact purposes.
        account_id:
          type: string
          description: |-
            Account identifier for travel rule compliance.
            If not provided, defaults to portfolio ID.
      description: >-
        Represents a party in a travel rule transfer (originator or
        beneficiary).
    coinbase.public_rest_api.SubmitDepositTravelRuleDataResponse:
      title: Response after submitting travel rule data for a deposit
      required:
        - ownership_verification_required
      type: object
      properties:
        ownership_verification_required:
          title: Whether additional ownership verification is required
          type: boolean
    coinbase.public_rest_api.NaturalPersonName:
      title: Natural person name components
      type: object
      properties:
        first_name:
          title: Given/first name
          type: string
        middle_name:
          title: optional middle name (currently unused)
          type: string
        last_name:
          title: Family/last name
          type: string
    coinbase.public_rest_api.DetailedAddress:
      title: Detailed address information
      type: object
      properties:
        address_1:
          title: Primary address line
          type: string
        address_2:
          title: Secondary address line (optional)
          type: string
        address_3:
          title: Tertiary address line (optional)
          type: string
        city:
          title: City name
          type: string
        state:
          title: State or province
          type: string
        country_code:
          title: ISO 3166-1 alpha-2 country code
          type: string
        postal_code:
          title: Postal/ZIP code
          type: string
    coinbase.public_rest_api.TravelRuleWalletType:
      title: Type of wallet being used for transfers
      type: string
      description: |-
        - TRAVEL_RULE_WALLET_TYPE_UNSPECIFIED: Default unspecified wallet type
         - TRAVEL_RULE_WALLET_TYPE_VASP: Centralized exchange wallet
         - TRAVEL_RULE_WALLET_TYPE_SELF_CUSTODIED: Self-hosted/custodial wallet
      default: TRAVEL_RULE_WALLET_TYPE_UNSPECIFIED
      enum:
        - TRAVEL_RULE_WALLET_TYPE_UNSPECIFIED
        - TRAVEL_RULE_WALLET_TYPE_VASP
        - TRAVEL_RULE_WALLET_TYPE_SELF_CUSTODIED
    google.type.Date:
      title: >-
        Represents a whole or partial calendar date, such as a birthday. The
        time of

        day and time zone are either specified elsewhere or are insignificant.
        The

        date is relative to the Gregorian Calendar. This can represent one of
        the

        following:
      type: object
      properties:
        year:
          type: integer
          description: >-
            Year of the date. Must be from 1 to 9999, or 0 to specify a date
            without

            a year.
          format: int32
        month:
          type: integer
          description: >-
            Month of a year. Must be from 1 to 12, or 0 to specify a year
            without a

            month and day.
          format: int32
        day:
          type: integer
          description: >-
            Day of a month. Must be from 1 to 31 and valid for the year and
            month, or 0

            to specify a year by itself or a year and month where the day isn't

            significant.
          format: int32
      description: >-
        * A full date, with non-zero year, month, and day values.

        * A month and day, with a zero year (for example, an anniversary).

        * A year on its own, with a zero month and a zero day.

        * A year and month, with a zero day (for example, a credit card
        expiration
          date).

        Related types:


        * [google.type.TimeOfDay][google.type.TimeOfDay]

        * [google.type.DateTime][google.type.DateTime]

        * [google.protobuf.Timestamp][google.protobuf.Timestamp]

````