Create investment terms for a project for the current user

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

Create investment terms for a project for the current user.

Path parameters

application/json

Body Required

Investment term information

Responses

POST /users/{user_id}/projects/{project_id}/investment_terms
curl \
 -X POST https://client-subdomain.bitbond.net/api/v1/users/{user_id}/projects/{project_id}/investment_terms \
 -H "Content-Type: application/json" \
 -d '{"terms":{"read_printed_securities_info_sheet":true,"documents_understood":true}}'
Request example
{
  "terms": {
    "read_printed_securities_info_sheet": true,
    "documents_understood": true
  }
}
Response examples (201)
{
  "id": "string",
  "user_id": "string",
  "project_id": "string",
  "documents_understood": true,
  "read_printed_securities_info_sheet": true
}