Sign in

Update entry

documented

Update a specific entry.

PUT /gf/v2/entries/{ENTRY_ID}Entriesno 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/entries/{{$ENTRY_ID}}" \
  -X PUT \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -u "{{GRAVITYFORMS_API_KEY}}:{{GRAVITYFORMS_SECRET}}" \
  -d '{"id":"{{$ENTRY_ID}}","form_id":"{{$FORM_ID}}","date_updated":"{{$DATE_UPDATED}}","is_starred":"{{$IS_STARRED}}","created_by":"{{$CREATED_BY}}","source_url":"{{$SOURCE_URL}}","ip":"{{$IP}}","date_created":"{{$DATE_CREATED}}","is_read":"{{$IS_READ}}","user_agent":"{{$USER_AGENT}}","status":"{{$STATUS}}","1.3":"{{$FIELD_1_3}}","3":"{{$FIELD_3}}","2":"{{$FIELD_2}}"}'