add v3 for event patch

This commit is contained in:
Nolan Burfield 2024-11-29 13:26:35 -08:00
parent 53e500a563
commit 5a9eec02ad
2 changed files with 40 additions and 1 deletions

View File

@ -165,3 +165,42 @@ class Event():
return response.json(), response.status_code
except: # pylint: disable=bare-except
return None, response.status_code
def patch_v3(self, event_key, patch_data):
"""
patch_v3 Path the Event V3.
:param event_key: The Event key to update with API
:param patch_data: The data to update the Event
"""
# Set the headers for the request
headers = {
'Content-Type': 'application/json',
'Accept': 'application/json',
'Authorization': f'Bearer {self.jwt}'
}
# Set the key to the patch data
patch_data['key'] = event_key
# Run the GET
response = requests.patch(
f'{self.base_url}/api/v1/events/{event_key}',
headers=headers,
timeout=30,
json=patch_data
)
# Good response. Return Event
if response.ok:
return response.json(), response.status_code
# Log error and retunr null
logging.error("[AFEVENT UPDATE] [%s]", response.text)
try:
return response.json(), response.status_code
except: # pylint: disable=bare-except
return None, response.status_code

View File

@ -9,7 +9,7 @@ with open('README.md', 'r') as f:
setup(
name='lib_af_api',
version='1.0.4',
version='1.0.5',
author='',
author_email='',
description='',