как добавить параметры в этот пример запроса huobi api

#huobi

Вопрос:

в huobi api через python я хочу сделать новый заказ , у меня есть этот код:

 timestamp = str(datetime.utcnow().isoformat())[0:19]
params = urlencode({'AccessKeyId': AccessKeyId,
                    'SignatureMethod': 'HmacSHA256',
                    'SignatureVersion': '2',                                   
                    'Timestamp': timestamp
                })
method = 'POST'
endpoint = '/v1/order/orders/place'
base_uri = 'api.huobi.pro'
pre_signed_text = method   'n'   base_uri   'n'   endpoint   'n'   params
hash_code = hmac.new(SecretKey.encode(), pre_signed_text.encode(), hashlib.sha256).digest()
signature = urlencode({'Signature': base64.b64encode(hash_code).decode()})
url = 'https://'   base_uri   endpoint   '?'   params   'amp;'   signature
response = requests.request(method, url)
accts = json.loads(response.text)
if response.ok:
    print(url   'nn')
    print(accts)
else:
    print('connection error!')
 

но я не знаю, куда поместить мои параметры:

  'account-id': '24800000',
   'symbol': 'ethusdt',
   'type': 'buy-limit',
   'amount': '0.01',
 

спасибо