API Documentation
The Polyform API lets you integrate form data into your workflows. All endpoints require authentication via Bearer token.
Authentication
Polyform uses OAuth 2.0 for authentication. After connecting your account, include the access token in all API requests:
Authorization: Bearer your_access_tokenEndpoints
Webhook Payload
When a form response is submitted, the webhook sends a POST request to your hook URL with the response data. Each question label is a top-level key with the answer as the value.
{
"What is your name?": "Jane Smith",
"What is your email?": "jane@example.com",
"How would you rate us?": "5"
}Questions that were left empty will have a null value.
Need help?
If you have questions about the API or need help with your integration, contact us.