v1

latestOpenAPI 3.1.02026-07-241653251.3 MB
Trade Strategy

Update a Strategy's metadata

Updates the Strategy's metadata. Synchronous. The submitted value replaces the previous one verbatim (no merge); pass {} to clear. Only metadata is mutable.

patch/strategies/{strategy_id}

Path parameters

strategy_idstring uuid required

Unique identifier of the Strategy.

Headers

X-SCX-SIGNEDstring required

HMAC-SHA256 signature of the request, base64-encoded. See the Authentication guide for the exact signing formula.

X-SCX-TIMESTAMPstring required
Example:1678901234

Current Unix timestamp in seconds. Must be within 60 seconds of server time or the request is rejected.

Request body

metadataobject required

New value for the Strategy metadata. Replaces the previous value verbatim (no merge). Pass {} to clear.

Response

The updated Strategy.

Example response

{
  "message": {
    "id": "b1c2d3e4-f5a6-4789-bcde-f01234567890",
    "request_id": "b1c2d3e4-f5a6-4789-bcde-f01234567890",
    "quoted_currency": "USD",
    "metadata": {
      "owner_email": "ops@example.com",
      "internal_id": "STR-2026-Q2-001"
    },
    "created_at": "2026-04-17T10:00:00Z",
    "updated_at": "2026-04-17T10:00:00Z"
  }
}