Create or Update Symbol Information

POST /admin/symbol-info

Create or Update Symbol Information

Create or Update information about a symbol such as description and photo.

application/json

Body Required

  • adminFin string Required
  • symbolInfo object Required
    Hide symbolInfo attributes Show symbolInfo attributes object
    • blurb string | null
    • code string Required
    • currency string Required

      Values are ARS, AUD, BWP, BRL, CAD, CNH, CNY, COP, CZK, DKK, DOP, EGP, EUR, GBP, HKD, HUF, IDR, INR, ISK, JPY, KZT, LTL, LUF, MXN, MYR, TWD, NZD, NOK, PEN, PLN, KRW, RON, RUB, SGD, SKK, SIT, ZAR, SEK, CHF, THB, TRY, USD, UYU, or VND.

    • issuerId string(uuid) | null
    • listingName string Required
    • nav number(double) | null
    • symbolStatus string Required

      Values are Open, Halted, or PreListed.

Responses

  • Ok

    Hide response attributes Show response attributes object
    • blurb string | null
    • code string Required
    • currency string Required

      Values are ARS, AUD, BWP, BRL, CAD, CNH, CNY, COP, CZK, DKK, DOP, EGP, EUR, GBP, HKD, HUF, IDR, INR, ISK, JPY, KZT, LTL, LUF, MXN, MYR, TWD, NZD, NOK, PEN, PLN, KRW, RON, RUB, SGD, SKK, SIT, ZAR, SEK, CHF, THB, TRY, USD, UYU, or VND.

    • issuerId string(uuid) | null
    • issuerName string | null
    • name string Required
    • nav number(double) | null
    • symbolStatus string Required

      Values are Open, Halted, or PreListed.

POST /admin/symbol-info
curl \
 -X POST http://api.example.com/admin/symbol-info \
 -H "Content-Type: application/json" \
 -d '{"adminFin":"string","symbolInfo":{"blurb":"string","code":"string","currency":"ARS","issuerId":"string","listingName":"string","nav":42.0,"symbolStatus":"Open"}}'
Request example
{
  "adminFin": "string",
  "symbolInfo": {
    "blurb": "string",
    "code": "string",
    "currency": "ARS",
    "issuerId": "string",
    "listingName": "string",
    "nav": 42.0,
    "symbolStatus": "Open"
  }
}
Request examples
{
  "adminFin": "string",
  "symbolInfo": {
    "blurb": "string",
    "code": "string",
    "currency": "ARS",
    "issuerId": "string",
    "listingName": "string",
    "nav": 42.0,
    "symbolStatus": "Open"
  }
}
Response examples (200)
{
  "blurb": "string",
  "code": "string",
  "currency": "ARS",
  "issuerId": "string",
  "issuerName": "string",
  "name": "string",
  "nav": 42.0,
  "symbolStatus": "Open"
}
Response examples (200)
{
  "blurb": "string",
  "code": "string",
  "currency": "ARS",
  "issuerId": "string",
  "issuerName": "string",
  "name": "string",
  "nav": 42.0,
  "symbolStatus": "Open"
}