Skip to main content

I'm trying to automate the sending/receiving of SMS messages, is there anyway to get an SMS body and print it out. Heres what I have so far,

Screenshot 2023-08-14 150338.png

ideally it would print out the message in between the equal signs.

Thanks!

Here you go

jsonObj = resp.json()
for record in jsonObj.records:
print (record.subject)

Reply