Adjusting env calls

master
Patryk Gudalewicz 2022-10-28 09:59:01 +02:00
parent 8194efced9
commit 2c45333704
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ def make_request(url, DTAPIToken,verify, method, jsondata):
return response
def get_all_dashboards_withname(DTAPIToken, DTENV,name):
DTAPIURL= DTENV + "api/config/v1/dashboards"
DTAPIURL= DTENV + "/api/config/v1/dashboards"
r = make_request(DTAPIURL,DTAPIToken,True,"get",None)
print(r)
entityResponse = r.json()