📘
Gleantap API
  • Introduction
  • Fetch Data
    • Attribute List
    • Attribute Event List
    • Locations
    • Class Schedule
    • Customers
    • Events for a Customer
    • Opted In Customers
    • Campaigns
    • Opted Out Customers
    • Workrooms
    • Forms
    • Form Submissions
  • Update Data
    • Create or Update Location
    • Create a Class
    • Delete Class
    • Create or Update Contact
    • SMS Opt-in a Contact
    • Add Memberships for Contact
    • Create an Event
    • Delete Contact
    • Merge Contacts
    • Send SMS Notification
    • Send Email Notifications
Powered by GitBook
On this page
  1. Fetch Data

Form Submissions

PreviousFormsNextCreate or Update Location

Last updated 1 month ago

Get form submissions

post

Retrieves form submissions based on the provided form ID, offset, and limit.

Path parameters
form_idstringRequired

Form ID

Header parameters
X-API-KEYstringRequired

Your API key

X-SECRET-KEYstringRequired

Your Secret key

Body
offsetintegerRequired

The offset for pagination

limitintegerRequired

The limit for pagination

user_idstringOptional

The user ID to filter submissions by

Responses
200
Form submissions retrieved successfully
application/json
400
Invalid request
application/json
401
Unauthorized
application/json
404
Form not found
application/json
500
Internal server error
application/json
post
POST /v2/ExternalApi/getFormSubmissions HTTP/1.1
Host: api.gleantap.com
X-API-KEY: text
X-SECRET-KEY: text
Content-Type: application/json
Accept: */*
Content-Length: 39

{
  "offset": 1,
  "limit": 1,
  "user_id": "text"
}
[
  {
    "form_id": "text",
    "submission_id": "text",
    "submission_data": {},
    "submission_date": "2025-05-21T18:15:37.605Z"
  }
]