Skip to content

fl.request_transfer

Note

This document has been machine translated.

Retrieve the latest aggregated model from the upstream model store and store it in the model store.

Parameters

  • model_store_ddc: string -- Model store name.

Return Values

Model information of the stored model is returned. See model_info for details.

Execution example

Request Data

{
  "id": 1,
  "jsonrpc": "2.0",
  "method": "fl.request_transfer",
  "params": {
    "model_store_ddc": "my_store"
  }
}

Request Execution

curl -H "Content-type: application/json" \
     -H "APIKey: 9c6f4574-89d1-4e3c-8af7-2549dc217fcf" \
     -H "Secret: aef8caingiej1ieNieJ3Phool4maeGohcies" \
     -X POST -d "@request.json" \
     https://localhost/api/v2/fl/jsonrpc

Response

{
  "result": {
    "start_datetime": {
      "_type": "datetime",
      "val": "2025-07-12T10:31:35.462732+09:00"
    },
    "end_datetime": {
      "_type": "datetime",
      "val": "2025-07-12T10:31:35.462734+09:00"
    },
    "location": [
      0.0,
      0.0
    ],
    "tenant_id": "id-party",
    "model_id": "fd981197-31a6-4f12-9cf2-30782bffb684",
    "model_kind": "my_model",
    "model_description": "this is my sample model",
    "model_meta": {
      "version": "1",
      "created": "2025-07-01 01:02:03",
      "loss": 0.123
    },
    "model_state": 40,
    "model_hash": "e9a5b77d4b6794a47ad0ba1682185148",
    "model_size": 17,
    "round": 0,
    "hop_count": 0,
    "model_store_ddc": "my_store_1752278789.8122"
  },
  "id": 1,
  "jsonrpc": "2.0"
}