Use post instead of get on initialize

This commit is contained in:
Joshua Boniface 2020-04-06 15:05:33 -04:00
parent c3bd6b6ecc
commit b3a75d8069
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ def initialize(config):
API arguments:
API schema: {json_data_object}
"""
response = call_api(config, 'get', '/initialize')
response = call_api(config, 'post', '/initialize')
if response.status_code == 200:
retstatus = True