Vectorizer.AI ➔ Stripe Payload Specification
Technical reference for automating data exchange between Image Processing and Payments workflows.
💡 How this integration works:
1. Vectorizer.AI triggers an event when vectorization.completed occurs.
2. Data is packaged into a standard JSON webhook payload.
3. Payload is delivered into your Stripe intake pipeline and mapped to your Payments targets.
Authentication & Event Specs
| Parameter | Source (Vectorizer.AI) | Destination (Stripe) |
|---|---|---|
| Auth Mechanism | Basic Auth (API Key) | Bearer Secret Key |
| Trigger Event | vectorization.completed | Ingest Pipeline |
Sample Webhook JSON Payload
{
"event": "vectorization.completed_to_stripe",
"timestamp": 1788105197,
"source": {
"platform": "Vectorizer.AI",
"auth_mode": "Basic Auth (API Key)",
"data": {
"task_id": "sample_task_id_val",
"output_format": "sample_output_format_val",
"svg_data_url": "sample_svg_data_url_val",
"processing_ms": "sample_processing_ms_val"
}
},
"destination": {
"platform": "Stripe",
"auth_mode": "Bearer Secret Key",
"target_endpoint": "https://api.stripe.com/v1/ingest",
"mapped_fields": {
"session_id": "{{source.task_id}}",
"customer_email": "{{source.output_format}}",
"amount_total": "{{source.svg_data_url}}",
"currency": "{{source.processing_ms}}"
}
}
}
Quick Integration Setup
- Retrieve your secret API credentials from your Vectorizer.AI developer dashboard using authentication method
Basic Auth (API Key). - Configure the target endpoint URL to route payloads into the Stripe intake pipeline.
- Map incoming schema properties according to the JSON specification detailed above.
Expected HTTP Response Codes
| Status Code | Meaning | Troubleshooting Step |
|---|---|---|
200 OK | Success | Payload accepted and queued for routing. |
401 Unauthorized | Auth Failure | Verify headers for valid Basic Auth (API Key) credentials. |
422 Unprocessable | Schema Error | Check field keys alignment between source and target payload. |