Add files via upload

This commit is contained in:
rchac 2020-10-02 18:02:56 -06:00 committed by GitHub
parent ec06c48c47
commit aa06be1601
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -49,7 +49,7 @@ def pullUCRMCustomers():
def getUCRMCaps(idNum): def getUCRMCaps(idNum):
url = 'https://unms.exampleISP.com/crm/api/v1.0/clients/services?clientId=' + str(idNum) url = 'https://unms.exampleISP.com/crm/api/v1.0/clients/services?clientId=' + str(idNum)
headers = {'accept':'application/json', 'x-auth-token': ''} headers = {'accept':'application/json', 'x-auth-token': orgUCRMxAuthToken}
r = requests.get(url, headers=headers) r = requests.get(url, headers=headers)
jsonData = r.json() jsonData = r.json()
for customer in jsonData: for customer in jsonData: