Skip to main content
PATCH
/
portfolios
/
{portfolioId}
/
manual-positions
/
{positionId}
cURL
curl --request PATCH \
  --url https://lighthouse.one/v1/api/portfolios/{portfolioId}/manual-positions/{positionId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "amount": 12.5,
  "description": "Updated note",
  "price": 4000
}
'
{
  "data": {
    "id": "01JZYKJR06MANUAL00001",
    "network": "Ethereum",
    "platform": "Manual",
    "account": "Main Wallet",
    "assetSymbol": "ETH",
    "assetName": "Ethereum",
    "amount": 12.5,
    "price": 3915.228,
    "usdValue": 48940.35,
    "manualAsset": false,
    "description": "Updated note"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

portfolioId
string
required

A unique identifier for the portfolio. The portfolioId can be obtained from the Lighthouse API keys settings.

positionId
string
required

The unique identifier of the manual position to update.

Body

application/json

Partial update payload for a manual position. Only the provided fields are mutated. The price field is honored only when the position references a custom (private) asset (manualAsset: true); otherwise it is silently ignored.

amount
number

The new amount of the asset in the position

description
string | null

Optional free-text note attached to the position. Maximum length: 200 characters.

Maximum string length: 200
price
number

New user-set USD price. Honored only when the position references a custom (private) asset; silently ignored otherwise.

Response

Updated manual position

data
object