Fetch the investment terms of a project for the current user

GET /users/{user_id}/projects/{project_id}/investment_terms

Fetch the investment terms of a project for the current user.

Path parameters

  • user_id string Required

    User id

  • project_id string Required

    Project id

Responses

  • 200

    The investment terms list of the project

    Hide response attributes Show response attributes array[object]
    • id string(uuid)
    • user_id string(uuid)
    • project_id string(uuid)
    • documents_understood boolean
    • read_printed_securities_info_sheet boolean
GET /users/{user_id}/projects/{project_id}/investment_terms
curl \
 -X GET https://client-subdomain.bitbond.net/api/v1/users/{user_id}/projects/{project_id}/investment_terms
Response examples (200)
[
  {
    "id": "string",
    "user_id": "string",
    "project_id": "string",
    "documents_understood": true,
    "read_printed_securities_info_sheet": true
  }
]
Response examples (200)
[
  {
    "id": "string",
    "user_id": "string",
    "project_id": "string",
    "documents_understood": true,
    "read_printed_securities_info_sheet": true
  }
]