Fetch the list of projects the current user has payments

GET /users/{user_id}/projects

Fetch the list of projects the current user has payments or orders in.

Path parameters

  • user_id string Required

    User id

Responses

  • 200

    The projects list of the current user

    Hide response attributes Show response attributes array[object]
    • id string(uuid)
    • code string
    • chain string

      Values are Avalanche, Ethereum, Polygon, or Stellar. Default value is Ethereum.

    • description string | null
    • free_float_bps number
    • number_of_tokens string
    • minimum_subscription_bps number
    • token_price string
    • currency string
    • coupon_bps integer
    • min_investment number(float)
    • on_sale boolean
    • pre_sale boolean
    • post_sale boolean
    • sale_starts_at string(datetime)
    • sale_ends_at string(datetime)
    • published boolean
    • account_name string
    • has_investment_survey boolean
    • transferability string

      Values are open or white_list.

    • bvdh_customer_id string
    • iban string
    • bic string
GET /users/{user_id}/projects
curl \
 -X GET https://client-subdomain.bitbond.net/api/v1/users/{user_id}/projects
Response examples (200)
[
  {
    "id": "string",
    "code": "string",
    "chain": "Ethereum",
    "description": "string",
    "free_float_bps": 42.0,
    "number_of_tokens": "string",
    "minimum_subscription_bps": 42.0,
    "token_price": "string",
    "currency": "string",
    "coupon_bps": 42,
    "min_investment": 42.0,
    "on_sale": true,
    "pre_sale": true,
    "post_sale": true,
    "sale_starts_at": "string",
    "sale_ends_at": "string",
    "published": true,
    "account_name": "string",
    "has_investment_survey": true,
    "transferability": "open",
    "bvdh_customer_id": "string",
    "iban": "string",
    "bic": "string"
  }
]
Response examples (200)
[
  {
    "id": "string",
    "code": "string",
    "chain": "Ethereum",
    "description": "string",
    "free_float_bps": 42.0,
    "number_of_tokens": "string",
    "minimum_subscription_bps": 42.0,
    "token_price": "string",
    "currency": "string",
    "coupon_bps": 42,
    "min_investment": 42.0,
    "on_sale": true,
    "pre_sale": true,
    "post_sale": true,
    "sale_starts_at": "string",
    "sale_ends_at": "string",
    "published": true,
    "account_name": "string",
    "has_investment_survey": true,
    "transferability": "open",
    "bvdh_customer_id": "string",
    "iban": "string",
    "bic": "string"
  }
]