Attach financial data

Body
required
application/json
  • externalId
    Type: string
    required

    Partner-defined business identifier

  • timeseries
    Type: array object[]
    required

    Financial data timeseries

Responses
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
Request Example for post/attach-financial-data
curl https://api-sandbox.tryslatehq.com/attach-financial-data \
  --request POST \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: YOUR_SECRET_TOKEN' \
  --data '{
  "externalId": "biz_123",
  "timeseries": [
    {
      "date": "2025-01-01",
      "data": {
        "key": "value"
      }
    }
  ]
}'
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "businessId": "123e4567-e89b-12d3-a456-426614174000",
  "timeseries": [
    {
      "date": "2025-01-01",
      "data": {
        "key": "value"
      }
    }
  ]
}