Sign in

Get entries for form

documented

List entries for a specific form.

GET /gf/v2/forms/{FORM_ID}/entriesEntriesno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://{{$site_domain}}/wp-json/gf/v2/forms/{{$FORM_ID}}/entries" \
  -X GET \
  -u '{{GRAVITYFORMS_API_KEY}}:{{GRAVITYFORMS_SECRET}}' \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -G \
  --data-urlencode '_labels={{$labels}}' \
  --data-urlencode 'paging[current_page]={{$page}}' \
  --data-urlencode 'paging[page_size]={{$limit}}'