You can export user or device data for specific segments using the Pushwoosh API. This allows you to integrate Pushwoosh data with external platforms like data warehouses (e.g., Google BigQuery), CRMs, or cloud storage (e.g., Google Cloud Storage) for further analysis, synchronization, or processing.
The export process involves two main API endpoints:
-
/exportSegment
: Use this endpoint to start the export process for the segment you need. Specify the segment criteria in your request. The API will return arequest_id
which you'll need for the next step. -
/exportSegment/result
: Use this endpoint, providing therequest_id
obtained from/exportSegment
, to check the status of your export job. Once the export is complete, this endpoint will provide a URL where you can download the data file (e.g., in CSV or JSON format).
Important Considerations:
- User and device data is dynamic. Device tokens can be removed if the app is uninstalled, and devices inactive for extended periods might be automatically removed from our system. Ensure your data integration process accounts for this potential data volatility.
Comments
0 comments
Article is closed for comments.