Python Forum

Full Version: POST Syntax error
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
This code is giving me a Syntax error at POST:

curl --request POST \
  --url https://api.schwabapi.com/trader/v1/accounts/{account_hash}/orders \
  --header 'Authorization: {Access_Token}' \
  --data {"session": "NORMAL",
  "duration": "DAY",
  "orderType": "MARKET",
  "orderStrategyType": "SINGLE",
  "orderLegCollection": [
    {
      "instruction": "BUY",
      "quantity": 1,
      "instrument": {
        "symbol": "USA",
        "assetType": "EQUITY"
      }
    }
  ]
}
message": "Statements must be separated by newlines or semicolons",