Skip to main content
GET
/
accounts
/
{account_id}
/
form-submissions
List form submissions
curl --request GET \
  --url https://www.useroulette.com/api/v1/accounts/{account_id}/form-submissions \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "submissions": [
      {
        "id": "sub-uuid-1",
        "account_id": "account-uuid",
        "integration_type": "tally",
        "data": [
          {
            "key": "company_name",
            "label": "Company Name",
            "type": "INPUT_TEXT",
            "value": "TechStartup Inc"
          },
          {
            "key": "email",
            "label": "Email",
            "type": "INPUT_EMAIL",
            "value": "founder@techstartup.com"
          }
        ],
        "processed": false,
        "created_at": "2024-01-15T10:30:00Z"
      }
    ],
    "pagination": {
      "page": 1,
      "limit": 10,
      "total": 25,
      "total_pages": 3
    }
  }
}

Authorizations

Authorization
string
header
required

API key authentication. Generate keys from your account settings.

Include in header: Authorization: Bearer YOUR_API_KEY

Path Parameters

account_id
string<uuid>
required

The unique identifier of the account/team

Query Parameters

page
integer
default:1

Page number for pagination (starts at 1)

Required range: x >= 1
limit
integer
default:20

Number of items per page (max 100)

Required range: 1 <= x <= 100
sort_order
enum<string>
default:desc

Sort direction

Available options:
asc,
desc
sort_by
enum<string>
default:created_at
Available options:
created_at,
updated_at
company_id
string<uuid>

Filter submissions linked to a specific company

processed
boolean

Filter by processed status

integration_type
enum<string>

Filter by source integration

Available options:
tally,
specter,
manual

Response

List of form submissions

success
boolean
required
data
object
required