Ingest batch of events.
Scopes: events:write
events:write
Python
from polar_sdk import Polar with Polar( access_token="<YOUR_BEARER_TOKEN_HERE>", ) as polar: res = polar.events.ingest(request={ "events": [], }) # Handle response print(res)
{ "inserted": 123, "duplicates": 0 }
You can generate an Organization Access Token from your organization's settings.
List of events to ingest.
Show child attributes
Successful Response
Number of events inserted.
Number of duplicate events skipped.
Was this page helpful?