mirror of
https://github.com/retailcrm/api-client-python.git
synced 2024-11-21 20:46:03 +03:00
working orderGet
This commit is contained in:
parent
0fce38952d
commit
f50cd9e318
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1,3 @@
|
||||
*.swp
|
||||
*.pyc
|
||||
|
||||
|
38
IntaroApy.py
38
IntaroApy.py
@ -1,38 +0,0 @@
|
||||
import requests
|
||||
|
||||
class IntaroApy:
|
||||
'Intaro Api wrapper'
|
||||
|
||||
apiVersion = '3'
|
||||
|
||||
def __init__(self, crmUrl, apiKey):
|
||||
self.crmUrl = crmUrl + '/api/v' + IntaroApy.apiVersion + '/'
|
||||
self.apiKey = apiKey
|
||||
self.parameters = { 'apiKey': apiKey }
|
||||
|
||||
def requestApi(self, url, method='GET', format='json'):
|
||||
|
||||
#TODO: catch http exceptions
|
||||
if method == 'GET':
|
||||
result = requests.get(url, params=self.parameters)
|
||||
else if method == 'POST':
|
||||
result = requests.post(url, data=self.parameters)
|
||||
|
||||
statusCode = result.status_code
|
||||
r = result.json()
|
||||
|
||||
# reset params dict
|
||||
self.parameters = { 'apiKey': apiKey }
|
||||
|
||||
if statusCode > 400 || r.has_key('success') && r['success'] == False :
|
||||
#TODO: ApiException
|
||||
|
||||
if r.has_key('generatedAt') :
|
||||
self.generatedAt = r['generatedAt']
|
||||
del r['generatedAt']
|
||||
|
||||
del r['success']
|
||||
|
||||
return True
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user