Postscript Developer Docs
Integrate with the Postscript SMS marketing platform. Track events, manage customer profiles, and power automations.
Quick Start
Send your first event with a single API call
curl -X POST https://api.postscript.io/v1/events \
-H "Authorization: Bearer ps_live_your_key_here" \
-H "Content-Type: application/json" \
-d '{
"event_type": "placed_order",
"profile": { "email": "[email protected]" },
"properties": {
"order_id": "ORD-1234",
"value": 99.99,
"currency": "USD"
}
}'