Update the project information based on id

PUT /projects/{id}

Update the project information based on id

Path parameters

  • id string Required

    Resource ID

application/json

Body Required

The project information

Responses

PUT /projects/{id}
curl \
 -X PUT https://client-subdomain.bitbond.net/api/v1/projects/{id} \
 -H "Content-Type: application/json" \
 -d '{"project":{"code":"string","chain":"Ethereum","sale_starts_at":"string","sale_ends_at":"string","free_float_bps":42.0,"number_of_tokens":42.0,"minimum_subscription_bps":42.0,"token_price":42.0,"currency":"string","coupon_bps":42,"min_investment":42.0,"published_at":"string","account_name":"string","has_investment_survey":true,"transferability":"open","bvdh_customer_id":"string","iban":"string","bic":"string"}}'
Request example
{
  "project": {
    "code": "string",
    "chain": "Ethereum",
    "sale_starts_at": "string",
    "sale_ends_at": "string",
    "free_float_bps": 42.0,
    "number_of_tokens": 42.0,
    "minimum_subscription_bps": 42.0,
    "token_price": 42.0,
    "currency": "string",
    "coupon_bps": 42,
    "min_investment": 42.0,
    "published_at": "string",
    "account_name": "string",
    "has_investment_survey": true,
    "transferability": "open",
    "bvdh_customer_id": "string",
    "iban": "string",
    "bic": "string"
  }
}
Response examples (201)
{
  "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"
}