Write Messages to the Topic
import requests
def send_messages(topic:str, records:list):
assert isinstance(records, list)
body = {
'records': records,
}
url = 'https://test.avalanchio.com/api/v1/topics/send-messages/{topic}'
headers = {
'Content-Type': 'application/json'
'Authorization': 'Bearer <PUT BEARER TOKEN>'
}
response = requests.post_method(url, json = body, timeout = 10.0)
return response