Seccl - Search assets on Seccl

GET /api/v1/addons/seccl/{addon}/search-assets

Path parameters

  • addon string Required

    The addon ID.

Query parameters

Responses

  • 200 application/json
    Hide response attributes Show response attributes object
    • id string

      The unique identifier of the client

    • isin string

      The ISIN of the asset

    • The short name of the asset

    • The long name of the asset

    • currency string

      The currency of the asset

    • status string

      The status of the asset

    • The node ID the asset is available to

    • node_id array[string]

      The node IDs the asset is associated with

    • mid object

      The mid price of the asset

      Additional properties are allowed.

GET /api/v1/addons/seccl/{addon}/search-assets
curl \
 -X GET https://api.plannrcrm.com/api/v1/addons/seccl/soderberg/search-assets?search=Vanguard \
 -H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 -H "Content-Type: application/json" \
 -H "Accept: application/json"
Response examples (200)
{
  "id": "031DF6J",
  "mid": {
    "amount": {
      "example": "23454",
      "description": "Money amount at their lowest denominator (for example: pennies)"
    },
    "currency": {
      "example": "GBP",
      "description": "Currency of the money"
    },
    "formatted": {
      "example": "£234.54",
      "description": "Money amount formatted with currency"
    }
  },
  "isin": "GB00B1XZS820",
  "status": "Active",
  "node_id": [
    "1",
    "2"
  ],
  "currency": "GBP",
  "long_name": "Vanguard Investments UK Ltd LifeStrategy 80% Equity Acc",
  "short_name": "VANGUARD LIFESTRATEGY 80% EQUI ACC",
  "available_to_node_id": [
    "0"
  ]
}