1👍
✅
set_send_at()
takes an integer argument, but you are passing it a dictionary ({"send_at": 1472058300}
). This is invalid and causes the error.
Change it to:
header.set_send_at(1472058300)
Source:stackexchange.com