All Projects → gravityforms → gravityformsrestapi

gravityforms / gravityformsrestapi

Licence: other
Feature add-on: Implements the WP REST API routing for the Gravity Forms API

Programming Languages

PHP
23972 projects - #3 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to gravityformsrestapi

wp-graphql-gravity-forms
GraphQL API for interacting with Gravity Forms.
Stars: ✭ 119 (+495%)
Mutual labels:  gravityforms
repeater2-for-gravity-forms
A Gravity Forms add-on that allows specified groups of fields to be repeated by the user.
Stars: ✭ 19 (-5%)
Mutual labels:  gravityforms
Gravity-Forms-Entry-Expiration
Automatically remove old form entries on a custom, defined schedule
Stars: ✭ 17 (-15%)
Mutual labels:  gravityforms
delayed-notifications-for-gravity-forms
Set delayed notifications for your gravity forms in easy steps
Stars: ✭ 26 (+30%)
Mutual labels:  gravityforms
gravityformscli
The DEVELOPMENT version of the Gravity Forms CLI Add-On
Stars: ✭ 13 (-35%)
Mutual labels:  gravityforms
gravityformstimesheet
A checkin/checkout Timesheet field for Gravity Forms
Stars: ✭ 22 (+10%)
Mutual labels:  gravityforms
gravityforms-phone-extension
Extension for GravityForms (WordPress) which applies the International Phone Input (http://intl-tel-input.com) to all Phone Fields.
Stars: ✭ 24 (+20%)
Mutual labels:  gravityforms

Gravity Forms REST API Feature Add-On - ARCHIVED

Build Status

Note: The REST API v2 is now integrated into Gravity Forms core. The information below is no longer accurate and the repository is now archived.

Introduction

This is the development version of the Gravity Forms Web API version 2. When it's ready it'll be integrated into the Gravity Forms core.

This is currently a beta version and should not be run on production sites without a full understanding of the possible risks that may be encountered when running beta software.

Support

Support is not offered within this repo, and issue reports are only for issues directly related to the plugin's code.

If you open an issue within GitHub, please provide information on the related code describing the problem. If you are unable to do so, please open a support ticket instead.

Issues that are not code-related will be immediately closed, and you will be directed to open a support ticket.

Upgrading to Version 2

The API is intended to feel as familiar as possible to developers who have worked with the WordPres REST API. The endpoints are largely the same as version 1, however, the responses are slightly different and authentication is no longer handled by Gravity Forms.

The following breaking changes are required by clients to consume version 2:

Authentication

If you're using cookie authentication, WordPress supports cookie authentication out of the box so you'll just need to change the way the nonce is created and sent. Create the nonce using wp_create_nonce( 'wp_rest' ) and send it in the _wpnonce data parameter (either POST data or in the query for GET requests), or via the X-WP-Nonce header.

If you're using signature authentication then you'll need to implement either Basic or OAuth authentication. Further details here:

Specify the Content Type when appropriate

The content-type application/json must be specified when sending JSON.

Example

curl --data [EXAMPLE_DATA] --header "Content-Type: application/json" https://localhost/wp-json/gf/v2

No Response Envelope

The response will not be enveloped by default. This means that the response will not be a JSON string containing the "status" and "response" - the body will contain the response and the HTTP code will contain the status.

The WP-API will envelope the response if the _envelope param is included in the request.

Example

Standard response:

{
    "3":                "Drop Down First Choice",
    "created_by":       "1",
    "currency":         "USD",
    "date_created":     "2016-10-10 18:06:12",
    "form_id":          "1",
    "id":               "1",
    "ip":               "127.0.0.1",
    "is_fulfilled":     null,
    "is_read":          0,
    "is_starred":       0,
    "payment_amount":   null,
    "payment_date":     null,
    "payment_method":   null,
    "payment_status":   null,
    "post_id":          null,
    "source_url":       "http://localhost?gf_page=preview&id=1",
    "status":           "active",
    "transaction_id":   null,
    "transaction_type": null,
    "user_agent":       "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36"
}

Response with _envelope parameter:

{
    "body": {
        "3":                "Drop Down First Choice",
        "created_by":       "1",
        "currency":         "USD",
        "date_created":     "2016-10-10 18:06:12",
        "form_id":          "1",
        "id":               "1",
        "ip":               "127.0.0.1",
        "is_fulfilled":     null,
        "is_read":          0,
        "is_starred":       0,
        "payment_amount":   null,
        "payment_date":     null,
        "payment_method":   null,
        "payment_status":   null,
        "post_id":          null,
        "source_url":       "http://localhost?gf_page=preview&id=1",
        "status":           "active",
        "transaction_id":   null,
        "transaction_type": null,
        "user_agent":       "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36"
    },
    "headers": {
        "Allow": "GET, POST, PUT, PATCH, DELETE"
    },
    "status": 200
}

Form Submissions

The Form Submissions endpoint now accepts application/json, application/x-www-form-urlencoded and multipart/form-data content types. With the introduction of support for multipart/form-data now files can be sent to single file upload fields.

Request values should be sent all together instead of in separate elements for input_values, field_values, target_page and source_page.

Example

Example body of a JSON request:

{
    "input_1":      "test",
    "field_values": "",
    "source_page":  1,
    "target_page":  0
}

POST Single Resources

In order to maintain consistency with the WP API, the POST /entries and POST /forms endpoints no longer accept collections. This means that it's no longer possible to create multiple entries or forms in a single request.

DELETE now trashes

Sending DELETE requests will send the resource to the trash instead of deleting it permanently. Repeating the DELETE request will not delete the resource permanently but it will generate a 401 (Gone) response code. Use the 'force' parameter to delete the entry or form permanently.

DELETE, POST and PUT responses

Successful DELETE, POST and PUT requests now return the deleted, updated or created entry or form instead of a confirmation message.

Unit Tests

The unit tests can be installed from the terminal using:

bash tests/bin/install.sh [DB_NAME] [DB_USER] [DB_PASSWORD] [DB_HOST]

If you're using VVV you can use this command:

bash tests/bin/install.sh wordpress_unit_tests root root localhost

API Documentation

Authentication

Authentication can be performed using the same methods as the WordPress REST API. For further information on WordPress' authentication, the following resources are available:

API Path

The API can be accessed as route from the WordPress REST API. This should look something like this:

https://localhost/wp-json/gf/v2/

For example, to obtain the Gravity Forms entry with ID 5, your request would be made to the following:

https://localhost/wp-json/gf/v2/entries/5

Sending Requests

PHP

// Define the URL that will be accessed.
$url = rest_url( 'gf/v2/entries' );

// Example using Basic Authentication
$args = array(
    'Authorization' => 'Basic ' . base64_encode( 'admin' . ':' . '12345' ),
	'headers'       => array( 'Content-type' => 'application/json' ),
);

// Make the request to the API.
$response = wp_remote_get( $url, $args );

// Check the response code.
if ( wp_remote_retrieve_response_code( $response ) != 200 || ( empty( wp_remote_retrieve_body( $response ) ) ) ){
    // If not a 200, HTTP request failed.
    die( 'There was an error attempting to access the API.' );
}

// Result is in the response body and is json encoded.
$body = json_decode( wp_remote_retrieve_body( $response ), true );

// Check the response body.
if( $body['status'] > 202 ){
    die( "Could not retrieve forms." );
}

// Entries retrieved successfully.
$entries = $body['response'];

In this example, the $entries variable contains the response from the API request.

Endpoints

GET /entries

Gets all entries.

Path

https://localhost/wp-json/gf/v2/entries

Response [json]

The response will contain a JSON object which contains the entry details. An example can be found below:

Example Response

{
  "id":           "71",
  "form_id":      "1",
  "date_created": "2016-11-28 18:12:17",
  "is_starred":   0,
  "is_read":      0,
  "ip":           "127.0.0.1",
  "source_url":   "http:\/\/localhost\/pagename",
  "post_id":      null,
  "created_by":   "2",
  "user_agent":   "Mozilla\/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/54.0.2840.87 Safari\/537.36",
  "status":       "active",
  "1":            "",
  "2":            "",
  "3":            "",
  "4":            "",
  "5":            "",
  "6.1":          "",
  "6.2":          "",
  "6.3":          ""
}

Optional Arguments

  • _labels [int]

    Enabled the inclusion of field labels in the results.

    • Usage

        https://localhost/wp-json/gf/v2/entries?_labels=1
      
    • Example Response

      [{
        "id":           "71",
        "form_id":      "1",
        "date_created": "2016-11-28 18:12:17",
        "is_starred":   0,
        "is_read":      0,
        "ip":           "127.0.0.1",
        "source_url":   "http:\/\/localhost\/pagename",
        "post_id":      null,
        "created_by":   "2",
        "user_agent":   "Mozilla\/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/54.0.2840.87 Safari\/537.36",
        "status":       "active",
        "1":            "",
        "2":            "",
        "3":            "",
        "4":            "",
        "5":            "",
        "6.1":          "",
        "6.2":          "",
        "6.3":          "",
        "_labels": {
          "1":  "Single Line Text",
          "2":  "Paragraph Text",
          "13": "File",
          "3":  "Drop Down",
          "4":  "Multi Select",
          "5":  "Number",
          "6": {
            "6.1": "Checkboxes First Choice",
            "6.2": "Checkboxes Second Choice",
            "6.3": "Checkboxes Third Choice"
          }
        }
      }]
  • include [int]

    An array of entries to include in the response.

    • Usage

        https://localhost/wp-json/gf/v2/entries?include[]=1&include[]=3
      
    • Example Response

      [{
        "date_created": "2016-11-28 18:12:17",
        "1":            "Text",
        "6.1":          "first",
        "6.2":          "second",
        "6.3":          "third"
      }]
  • _fields [int]

    A comma separated list of fields to include in the response.

    • Usage

        https://localhost/wp-json/gf/v2/entries/5?_fields=1,6.1,6.2,6.3,date_created
      
    • Example Response

      [{
        "date_created": "2016-11-28 18:12:17",
        "1":            "Text",
        "6.1":          "first",
        "6.2":          "second",
        "6.3":          "third"
      }]
  • search [json]

    The search criteria.

    • Properties

      • field_filters [array]

        An array of filters to search by.

      • key [int|float]

        The field ID.

      • value [string]

        The value to search for.

      • operator [string]

        The comparison operator to use.

    • Usage

      {
        "field_filters": [{
          "key":      1,
          "value":    "Field Value",
          "operator": "contains"
        }]
      }
  • paging [array]

    The paging criteria.

    • Properties

      • page_size [int]

        The number of results per page.

      • current_page [int]

        The current page to pull details from.

      • offset [int]

        The offset to begin with.

    • Usage

        https://localhost/wp-json/gf/v2/entries?paging[page_size]=20&paging[current_page]=2&paging[offset]=30
      
  • sorting [array]

    The sorting criteria.

    • Properties

      • key [string|int]

        The key to sort by.

      • direction [string]

        The direction. Either ASC or DESC.

      • is_numeric [bool]

        If the key is numeric.

    • Usage

        https://localhost/wp-json/gf/v2/entries?sorting[key]=id&sorting[direction]=ASC&sorting[is_numeric]=true
      

POST /entries

Creates an entry.

Path

https://localhost/wp-json/gf/v2/entries

Response [json]

When creating an entry, the response body will contain the complete new entry.

Optional Arguments

  • created_by [string]

    The user ID of the entry submitter.

    • Example

      Sets the entry submitter as the user with user ID 1.

        created_by=1
      
  • date_created [string]

    The date the entry was created, in UTC.

    • Example

      Sets the date created as 2016-11-28 18:12:17.

        date_created=2016-11-28+18%3A12%3A17
      
  • ip [string]

    The IP address of the entry creator.

    • Example

      Sets the entry IP as 127.0.0.1.

        ip=127.0.0.1
      
  • is_fulfilled [bool]

    Whether the transaction has been fulfilled, if applicable.

    • Example

      Sets the entry as fulfilled.

        is_fulfilled=1
      
  • is_read [bool]

    Whether the entry has been read.

    • Example

      Marks the entry as read.

        is_read=1
      
  • is_starred [bool]

    Whether the entry is starred.

    • Example

      Stars the entry.

        is_starred=1
      
  • source_url [string]

    The URL where the form was embedded.

  • status [string]

    The status of the entry.

    • Examples

      Sets the status to active:

         status=active
      
  • user_agent [string]

    The user agent string for the browser used to submit the entry.

    • Examples

      Sets the user agent as Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.87 Safari/537.36

        user_agent=Mozilla%2F5.0+%28Macintosh%3B+Intel+Mac+OS+X+10_12_2%29+AppleWebKit%2F537.36+%28KHTML%2C+like+Gecko%29+Chrome%2F54.0.2840.87+Safari%2F537.36``
      

Payment Arguments

  • payment_amount [int]

    The amount of the payment, if applicable.

    • Limitations

      Only applies when payment fields are present.

    • Examples

      Sets the payment amount of $2500.

        payment_amount=2500
      
  • payment_date [string]

    The date of the payment, if applicable.

    • Limitations

      Only applies when payment fields are present.
      
    • Example

      Sets the payment date as 2016-11-28 18:12:17.

        payment_date=2016-11-28+18%3A12%3A17
      
  • payment_method [string]

    The payment method for the payment, if applicable.

    • Limitations

      Only applies when payment fields are present.

    • Example

      Sets the payment method as Stripe.

        payment_method=Stripe
      
  • payment_status [string]

    The status of the payment, if applicable.

    • Limitations

      Only applies when payment fields are present.

    • Example

      Sets the payment status as Paid.

        payment_status=Paid
      
  • transaction_id [string]

    The transaction ID for the payment, if applicable.

    • Limitations

      Only applies when payment fields are present.

    • Example

      Sets the transaction ID as 1234.

        transaction_id=1234
      
  • transaction_type [string]

    The type of the transaction, if applicable.

    • Limitations

      Only applies when payment fields are present.

    • Example

      Sets the Subscription transaction type.

        transaction_type=Subscription
      

GET /entries/[ENTRY_ID]

Gets an entry based on the entry ID.

Path

    https://localhost/wp-json/gf/v2/entries/1

Response [json]

The response will contain a JSON object which contains the entry details. An example can be found below:

  • Example

    {
      "id":           "71",
      "form_id":      "1",
      "date_created": "2016-11-28 18:12:17",
      "is_starred":   0,
      "is_read":      0,
      "ip":           "127.0.0.1",
      "source_url":   "http:\/\/localhost\/pagename",
      "post_id":      null,
      "created_by":   "2",
      "user_agent":   "Mozilla\/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/54.0.2840.87 Safari\/537.36",
      "status":       "active",
      "1":            "",
      "2":            "",
      "3":            "",
      "4":            "",
      "5":            "",
      "6.1":          "",
      "6.2":          "",
      "6.3":          ""
    }

Optional Arguments

  • _labels [int]

    Whether to include the labels.

    • Usage

        https://localhost/wp-json/gf/v2/entries/5?_labels=1
      
    • Example Response

      {
        "id":           "71",
        "form_id":      "1",
        "date_created": "2016-11-28 18:12:17",
        "is_starred":   0,
        "is_read":      0,
        "ip":           "127.0.0.1",
        "source_url":   "http:\/\/localhost\/pagename",
        "post_id":      null,
        "created_by":   "2",
        "user_agent":   "Mozilla\/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/54.0.2840.87 Safari\/537.36",
        "status":       "active",
        "1":            "",
        "2":            "",
        "3":            "",
        "4":            "",
        "5":            "",
        "6.1":          "",
        "6.2":          "",
        "6.3":          "",
        "labels": {
          "1":  "Single Line Text",
          "2":  "Paragraph Text",
          "13": "File",
          "3":  "Drop Down",
          "4":  "Multi Select",
          "5":  "Number",
          "6": {
            "6.1": "Checkboxes First Choice",
            "6.2": "Checkboxes Second Choice",
            "6.3": "Checkboxes Third Choice"
          }
        }
      }
  • _fields [int]

    A comma separated list of fields to include in the response.

    • Usage

        https://localhost/wp-json/gf/v2/entries/5?_fields=1,6.1,6.2,6.3,date_created
      
    • Example Response

      {
        "date_created": "2016-11-28 18:12:17",
        "1":            "Text",
        "6.1":          "first",
        "6.2":          "second",
        "6.3":          "third"
      }

PUT /entries/[ENTRY_ID]

Updates an entry based on the specified entry ID.

Path

https://localhost/wp-json/gf/v2/entries/1

Response [json]

When updating an entry, the response body will contain the complete updated entry.

Optional Arguments

  • created_by [string]

    The user ID of the entry submitter.

    • Example

      Sets the entry submitter as the user with user ID 1.

        created_by=1
      
  • date_created [string]

    The date the entry was created, in UTC.

    • Example

      Sets the date created as 2016-11-28 18:12:17.

        date_created=2016-11-28+18%3A12%3A17
      
  • ip [string]

    The IP address of the entry creator.

    • Example

      Sets the entry IP as 127.0.0.1.

        ip=127.0.0.1
      
  • is_fulfilled [bool]

    Whether the transaction has been fulfilled, if applicable.

    • Example

      Sets the entry as fulfilled.

        is_fulfilled=1
      
  • is_read [bool]

    Whether the entry has been read.

    • Example

      Marks the entry as read.

        is_read=1
      
  • is_starred [bool]

    Whether the entry is starred.

    • Example

      Stars the entry.

        is_starred=1
      
  • source_url [string]

    The URL where the form was embedded.

  • status [string]

    The status of the entry.

    • Example

      Sets the status to active.

        status=active
      
  • user_agent [string]

    The user agent string for the browser used to submit the entry.

    • Example

      Sets the user agent as Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.87 Safari/537.36

        user_agent=Mozilla%2F5.0+%28Macintosh%3B+Intel+Mac+OS+X+10_12_2%29+AppleWebKit%2F537.36+%28KHTML%2C+like+Gecko%29+Chrome%2F54.0.2840.87+Safari%2F537.36``
      

Payment Arguments

  • payment_amount [int]

    The amount of the payment, if applicable.

    • Example

      Sets the payment amount of $2500.

        payment_amount=2500
      
  • payment_date [string]

    The date of the payment, if applicable.

    • Example

      Sets the payment date as 2016-11-28 18:12:17.

        payment_date=2016-11-28+18%3A12%3A17
      
  • payment_method [string]

    The payment method for the payment, if applicable.

    • Example

      Sets the payment method as Stripe.

        payment_method=Stripe
      
  • payment_status [string]

    The status of the payment, if applicable.

    • Example

      Sets the payment status as Paid.

        payment_status=Paid
      
  • transaction_id [string]

    The transaction ID for the payment, if applicable.

    • Example

      Sets the transaction ID as 1234.

        transaction_id=1234
      
  • transaction_type [string]

    The type of the transaction, if applicable.

    • Example

      Sets the Subscription transaction type.

        transaction_type=Subscription
      

POST /entries/[ENTRY_ID]/notifications

Sends the notifications for the given entry.

Path

https://localhost/wp-json/gf/v2/entries/1/notifications

Response [json]

  • Success [json]

    "Notifications sent"

Optional Arguments

  • _notifications [array]

    Limit the notifications to specific IDs.

    • Example

      Sets the entry submitter as the user with user ID 1.

        https://localhost/wp-json/gf/v2/entries/1/notifications?_notifications=574ff8257d864,596e543d90b46
      
  • _event [string]

    The event to trigger. Default: form_submission.

    • Example

      Sets the date created as 2016-11-28 18:12:17.

        https://localhost/wp-json/gf/v2/entries/1/notifications?_event=form_submission
      

DELETE /entries/[ENTRY_ID]

Sends the specified entry to the trash. If the entry is already in the trash then repeating this request will not delete the entry permanently but the response code will be 410 (Gone). Use the 'force' parameter to delete the entry permanently.

Path

https://localhost/wp-json/gf/v2/entries/1
https://localhost/wp-json/gf/v2/entries/1?force=1

Response [json]

  • Success [json]

    The trashed or deleted entry.

  • Failure [json]

    {
      "code":    "gf_cannot_delete",
      "message": "Invalid entry id: 71",
      "data":    {
        "status": 500
      }
    }

GET /forms

Gets the details of all forms.

Path

https://localhost/wp-json/gf/v2/forms

Response [json]

{
  "4": {
    "id":      "4",
    "title":   "Multi-Page Form",
    "entries": "2"
  },
  "1": {
    "id":      "1",
    "title":   "Test Form",
    "entries": "60"
  },
  "5": {
    "id":      "5",
    "title":   "Test Form 2",
    "entries": "2"
  },
  "6": {
    "id":      "6",
    "title":   "Test Form 3",
    "entries": "2"
  }
}

POST /forms

Creates a form.

Path

https://localhost/wp-json/gf/v2/forms

Response

  • Success [json]

    The newly created form.

  • Failure [json]

    {
      "code":    "missing_form_json",
      "message": "The Form object must be sent as a JSON string in the request body with the content-type header set to application\/json.",
      "data": {
      "status": 400
      }
    }

Required Arguments

  • title [string]

    The form title.

    • Example

      Sets the form title as Form Title

      {
        "title": "Form Title"
      }

PUT /forms

Updates a form.

Path

https://localhost/wp-json/gf/v2/forms

Response

  • Success [json]

    The updated form.

  • Failure [json]

    {
      "code":    "missing_form_json",
      "message": "The Form object must be sent as a JSON string in the request body with the content-type header set to application\/json.",
      "data": {
      "status": 400
      }
    }

Required Arguments

  • title [string]

    The form title.

    • Example

      Sets the form title as Form Title

      {
        "title": "Form Title"
      }

DELETE /forms

Sends the specified form to the trash. If the form is already in the trash then repeating this request will not delete the form permanently but the response code will be 410 (Gone). Use the 'force' parameter to delete the entry permanently.

Path

https://localhost/wp-json/gf/v2/forms

Response

  • Success [json]

    The deleted form.

  • Failure [json]

    {
      "code":    "gf_form_invalid_id",
      "message": "Invalid form id.",
      "data": {
      "status": 404
      }
    }

Required Arguments

  • title [string]

    The form title.

    • Example

      Sets the form title as Form Title

      {
        "title": "Form Title"
      }

GET /forms/[FORM_ID]

Gets the details of a form based on the specified form ID.

Path

https://localhost/wp-json/gf/v2/forms/1

Response

{
  "title":                "Test Form",
  "description":          "",
  "labelPlacement":       "top_label",
  "descriptionPlacement": "below",
  "button": {
    "type":     "text",
    "text":     "Submit",
    "imageUrl": ""
  },
  "fields": [
    {
      "type":                 "text",
      "id":                   1,
      "label":                "Single Line Text",
      "adminLabel":           "",
      "isRequired":           false,
      "size":                 "medium",
      "errorMessage":         "",
      "inputs":               null,
      "formId":               1,
      "description":          "",
      "allowsPrepopulate":    false,
      "inputMask":            false,
      "inputMaskValue":       "",
      "inputType":            "",
      "labelPlacement":       "",
      "descriptionPlacement": "",
      "subLabelPlacement":    "",
      "placeholder":          "",
      "cssClass":             "",
      "inputName":            "",
      "noDuplicates":         false,
      "defaultValue":         "",
      "choices":              "",
      "conditionalLogic":     "",
      "failed_validation":    "",
      "productField":         "",
      "enablePasswordInput":  "",
      "maxLength":            "",
      "pageNumber":           1,
      "displayOnly":          "",
      "multipleFiles":        false,
      "maxFiles":             "",
      "calculationFormula":   "",
      "calculationRounding":  "",
      "enableCalculation":    "",
      "disableQuantity":      false,
      "displayAllCategories": false,
      "useRichTextEditor":    false,
      "visibility":           "visible"
    },
    {
      "type":         "radio",
      "id":           7,
      "label":        "Radio Buttons",
      "adminLabel":   "",
      "isRequired":   false,
      "size":         "medium",
      "errorMessage": "",
      "inputs":       null,
      "choices": [
        {
          "text":       "Radio Buttons First Choice",
          "value":      "Radio Buttons First Choice",
          "isSelected": false,
          "price":      ""
        },
        {
          "text":       "Radio Buttons Second Choice",
          "value":      "Radio Buttons Second Choice",
          "isSelected": false,
          "price":      ""
        },
        {
          "text":       "Radio Buttons Third Choice",
          "value":      "Radio Buttons Third Choice",
          "isSelected": false,
          "price":      ""
        }
      ],
      "formId":               1,
      "description":          "",
      "allowsPrepopulate":    false,
      "inputMask":            false,
      "inputMaskValue":       "",
      "inputType":            "",
      "labelPlacement":       "",
      "descriptionPlacement": "",
      "subLabelPlacement":    "",
      "placeholder":          "",
      "cssClass":             "",
      "inputName":            "",
      "noDuplicates":         false,
      "defaultValue":         "",
      "conditionalLogic":     "",
      "failed_validation":    "",
      "productField":         "",
      "enableOtherChoice":    "",
      "enablePrice":          "",
      "pageNumber":           1,
      "displayOnly":          "",
      "multipleFiles":        false,
      "maxFiles":             "",
      "calculationFormula":   "",
      "calculationRounding":  "",
      "enableCalculation":    "",
      "disableQuantity":      false,
      "displayAllCategories": false,
      "useRichTextEditor":    false,
      "visibility":           "visible"
    },
    {
      "type":         "product",
      "id":           22,
      "label":        "Product Name",
      "adminLabel":   "",
      "isRequired":   false,
      "size":         "medium",
      "errorMessage": "",
      "inputs": [
        {
          "id":    "22.1",
          "label": "Name",
          "name":  ""
        },
        {
          "id":    "22.2",
          "label": "Price",
          "name":  ""
        },
        {
          "id":    "22.3",
          "label": "Quantity",
          "name":  ""
        }
      ],
        "inputType":            "singleproduct",
        "enablePrice":          null,
        "formId":               1,
        "description":          "",
        "allowsPrepopulate":    false,
        "inputMask":            false,
        "inputMaskValue":       "",
        "labelPlacement":       "",
        "descriptionPlacement": "",
        "subLabelPlacement":    "",
        "placeholder":          "",
        "cssClass":             "",
        "inputName":            "",
        "visibility":           "visible",
        "noDuplicates":         false,
        "defaultValue":         "",
        "choices":              "",
        "conditionalLogic":     "",
        "failed_validation":    "",
        "productField":         "",
        "basePrice":            "$200.00",
        "disableQuantity":      false,
        "pageNumber":           1,
        "displayOnly":          "",
        "multipleFiles":        false,
        "maxFiles":             "",
        "calculationFormula":   "",
        "calculationRounding":  "",
        "enableCalculation":    "",
        "displayAllCategories": false,
        "useRichTextEditor":    false
    }
  ],
  "version": "2.1.1.11",
  "id": 1,
  "useCurrentUserAsAuthor":     true,
  "postContentTemplateEnabled": false,
  "postTitleTemplateEnabled":   false,
  "postTitleTemplate":          "",
  "postContentTemplate":        "",
  "lastPageButton":             null,
  "pagination":                 null,
  "firstPageCssClass":          null,
  "postAuthor":                 "1",
  "postCategory":               "1",
  "postFormat":                 "0",
  "postStatus":                 "draft",
  "subLabelPlacement":          "below",
  "cssClass":                   "",
  "enableHoneypot":             false,
  "enableAnimation":            false,
  "save": {
    "enabled": true,
    "button": {
      "type": "link",
      "text": "Save and Continue Later"
    }
  },
  "limitEntries":           false,
  "limitEntriesCount":      "",
  "limitEntriesPeriod":     "",
  "limitEntriesMessage":    "",
  "scheduleForm":           false,
  "scheduleStart":          "",
  "scheduleStartHour":      "",
  "scheduleStartMinute":    "",
  "scheduleStartAmpm":      "",
  "scheduleEnd":            "",
  "scheduleEndHour":        "",
  "scheduleEndMinute":      "",
  "scheduleEndAmpm":        "",
  "schedulePendingMessage": "",
  "scheduleMessage":        "",
  "requireLogin":           false,
  "requireLoginMessage":    "",
  "notifications": {
    "57f6965a0b2e0": {
      "id":      "57f6965a0b2e0",
      "to":      "{admin_email}",
      "name":    "Admin Notification",
      "event":   "form_submission",
      "toType":  "email",
      "subject": "New submission from {form_title}",
      "message": "{all_fields}"
    }
  },
  "confirmations": {
    "57f6965a0bcd0": {
      "id":                "57f6965a0bcd0",
      "name":              "Default Confirmation",
      "isDefault":         true,
      "type":              "page",
      "message":           "",
      "url":               "",
      "pageId":            2,
      "queryString":       "",
      "disableAutoformat": false,
      "conditionalLogic":  [],
      "gppcmtEnable":      true
    }
  },
  "is_active":    "1",
  "date_created": "2016-10-06 18:22:18",
  "is_trash":     "0"
}

GET /forms/[FORM_ID]/entries

Gets entries associated with a specific form.

Path

https://localhost/wp-json/gf/v2/forms/1/entries

Response [json]

The response will contain a JSON object which contains the entry details. An example can be found below:

Example Response

{
  "id":           "71",
  "form_id":      "1",
  "date_created": "2016-11-28 18:12:17",
  "is_starred":   0,
  "is_read":      0,
  "ip":           "127.0.0.1",
  "source_url":   "http:\/\/localhost\/pagename",
  "post_id":      null,
  "created_by":   "2",
  "user_agent":   "Mozilla\/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/54.0.2840.87 Safari\/537.36",
  "status":       "active",
  "1":            "",
  "2":            "",
  "3":            "",
  "4":            "",
  "5":            "",
  "6.1":          "",
  "6.2":          "",
  "6.3":          ""
}

Optional Arguments

  • _labels [int]

    Whether to include the labels.

    • Usage

        https://localhost/wp-json/gf/v2/forms/1/entries?_labels=1
      
    • Example Response

      {
        "id":           "71",
        "form_id":      "1",
        "date_created": "2016-11-28 18:12:17",
        "is_starred":   0,
        "is_read":      0,
        "ip":           "127.0.0.1",
        "source_url":   "http:\/\/localhost\/pagename",
        "post_id":      null,
        "created_by":   "2",
        "user_agent":   "Mozilla\/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/54.0.2840.87 Safari\/537.36",
        "status":       "active",
        "1":            "",
        "2":            "",
        "3":            "",
        "4":            "",
        "5":            "",
        "6.1":          "",
        "6.2":          "",
        "6.3":          "",
        "labels": {
          "1":  "Single Line Text",
          "2":  "Paragraph Text",
          "13": "File",
          "3":  "Drop Down",
          "4":  "Multi Select",
          "5":  "Number",
          "6": {
            "6.1": "Checkboxes First Choice",
            "6.2": "Checkboxes Second Choice",
            "6.3": "Checkboxes Third Choice"
          }
        }
      }
  • _fields [int]

    A comma separated list of fields to include in the response.

    • Usage

        https://localhost/wp-json/gf/v2/entries/5?_fields=1,6.1,6.2,6.3,date_created
      
    • Example Response

      {
        "date_created": "2016-11-28 18:12:17",
        "1":            "Text",
        "6.1":          "first",
        "6.2":          "second",
        "6.3":          "third"
      }
  • search [json]

    The search criteria.

    • Usage

      • field_filters array

        An array of filters to search by.

      • key int|float

        The field ID.

      • value string

        The value to search for.

      • operator string

        The comparison operator to use.

      {
        "field_filters": [{
        "key":      1,
        "value":    "Field Value",
        "operator": "contains"
        }]
      }
  • paging [array]

    The paging criteria.

    • Parameters

      • page_size [int]

        The number of results per page.

      • current_page [int]

        The current page to pull details from.

      • offset [int]

        The offset to begin with.

    • Usage

        https://localhost/wp-json/gf/v2/forms/1/entries?paging[page_size]=20&paging[current_page]=2&paging[offset]=30
      
  • sorting [array]

    The sorting criteria.

    • Parameters

      • key [string|int]

        The key to sort by.

      • direction [string]

        The direction. Either ASC or DESC.

      • is_numeric [bool]

        If the key is numeric.

    • Usage

        https://localhost/wp-json/gf/v2/forms/1/entries?sorting[key]=id&sorting[direction]=ASC&sorting[is_numeric]=true
      

POST /forms/[FORM_ID]/entries

Creates an entry based on the specified form ID.

Path

https://localhost/wp-json/gf/v2/forms/1/entries

Response [json]

When creating an entry, the response body will contain the new entry.

Optional Arguments

  • created_by [string]

    The user ID of the entry submitter.

    • Example

      Sets the entry submitter as the user with user ID 1.

        created_by=1
      
  • date_created [string]

    The date the entry was created, in UTC.

    • Example

      Sets the date created as 2016-11-28 18:12:17.

        date_created=2016-11-28+18%3A12%3A17
      
  • ip [string]

    The IP address of the entry creator.

    • Example

      Sets the entry IP as 127.0.0.1.

        ip=127.0.0.1
      
  • is_fulfilled [bool]

    Whether the transaction has been fulfilled, if applicable.

    • Example

      Sets the entry as fulfilled.

        is_fulfilled=1
      
  • is_read [bool]

    Whether the entry has been read.

    • Example

      Marks the entry as read.

        is_read=1
      
  • is_starred [bool]

    Whether the entry is starred.

    • Example

      Stars the entry.

        is_starred=1
      
  • source_url [string]

    The URL where the form was embedded.

  • status [string]

    The status of the entry.

    • Example

      Sets the status to active.

        status=active
      
  • user_agent [string]

    The user agent string for the browser used to submit the entry.

    • Example

      Sets the user agent as:

      Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.87 Safari/537.36

        user_agent=Mozilla%2F5.0+%28Macintosh%3B+Intel+Mac+OS+X+10_12_2%29+AppleWebKit%2F537.36+%28KHTML%2C+like+Gecko%29+Chrome%2F54.0.2840.87+Safari%2F537.36``
      

Payment Arguments

  • payment_amount [int]

    The amount of the payment, if applicable.

    • Example

      Sets the payment amount of $2500.

        payment_amount=2500
      
  • payment_date [string]

    The date of the payment, if applicable.

    • Example

      Sets the payment date as 2016-11-28 18:12:17.

        payment_date=2016-11-28+18%3A12%3A17
      
  • payment_method [string]

    The payment method for the payment, if applicable.

    • Example

      Sets the payment method as Stripe.

        payment_method=Stripe
      
  • payment_status [string]

    The status of the payment, if applicable.

    • Example

      Sets the payment status as Paid.

        payment_status=Paid
      
  • transaction_id [string]

    The transaction ID for the payment, if applicable.

    • Example

      Sets the transaction ID as 1234.

        transaction_id=1234
      
  • transaction_type [string]

    The type of the transaction, if applicable.

    • Example

      Sets the Subscription transaction type.

        transaction_type=Subscription
      

GET /forms/[FORM_ID]/results

Gets form details, including entry details.

Path

https://localhost/wp-json/gf/v2/forms/1/results

Response

{
  "entry_count": "60",
  "field_data": {
    "1":  29,
    "2":  7,
    "13": 12,
    "3": {
      "Drop Down First Choice":  52,
      "Drop Down Second Choice": 0,
      "Drop Down Third Choice":  0
    },
    "4": {
      "Multi Select First Choice":  2,
      "Multi Select Second Choice": 0,
      "Multi Select Third Choice":  0
    },
    "5": 2,
    "6": {
      "Checkboxes First Choice":  2,
      "Checkboxes Second Choice": 0,
      "Checkboxes Third Choice":  0
    },
    "7": {
      "Radio Buttons First Choice":  0,
      "Radio Buttons Second Choice": 0,
      "Radio Buttons Third Choice":  0
    },
    "8":  0,
    "9":  0,
    "10": 0,
    "14": 6,
    "15": 3,
    "16": 0,
    "17": 2,
    "18": 0,
    "19": 0,
    "20": 0,
    "21": 0,
    "22": 8,
    "23": 1,
    "24": 0
  },
  "status":    "complete",
  "timestamp": 1480536695,
  "_labels": {
    "1":  "Single Line Text",
    "2":  "Paragraph Text",
    "13": "File",
    "3": {
      "label": "Drop Down",
      "choices": {
        "Drop Down First Choice":  "Drop Down First Choice",
        "Drop Down Second Choice": "Drop Down Second Choice",
        "Drop Down Third Choice":  "Drop Down Third Choice"
      }
    },
    "4": {
      "label": "Multi Select",
      "choices": {
        "Multi Select First Choice":  "Multi Select First Choice",
        "Multi Select Second Choice": "Multi Select Second Choice",
        "Multi Select Third Choice":  "Multi Select Third Choice"
      }
    },
    "5": "Number",
    "6": {
      "label": "Checkboxes",
      "choices": {
        "Checkboxes First Choice":  "Checkboxes First Choice",
        "Checkboxes Second Choice": "Checkboxes Second Choice",
        "Checkboxes Third Choice":  "Checkboxes Third Choice"
      }
    },
    "7": {
      "label": "Radio Buttons",
      "choices": {
        "Radio Buttons First Choice":  "Radio Buttons First Choice",
        "Radio Buttons Second Choice": "Radio Buttons Second Choice",
        "Radio Buttons Third Choice":  "Radio Buttons Third Choice"
      }
    },
    "8":  "Hidden Field",
    "9":  "HTML Block",
    "10": "Section Break",
    "14": "List",
    "15": "Date",
    "16": "Phone",
    "17": "Post Body",
    "18": "Name",
    "19": "Name",
    "20": "Name",
    "21": "Email",
    "22": "Product Name",
    "23": "Total",
    "24": "Coupon"
  }
}

Optional Arguments

  • search [json]

    The search criteria.

    • Parameters

      • field_filters [array]
        An array of filters to search by.
      • key [int|float]
        The field ID.
      • value [string]
        The value to search for.
      • operator [string]
        The comparison operator to use.
    • Usage

      {
        "field_filters": [{
          "key":      1,
          "value":    "Field Value",
          "operator": "contains"
        }]
      }
  • paging [array]

    The paging criteria.

    • Parameters

      • page_size int

        The number of results per page.

      • current_page int

        The current page to pull details from.

      • offset int

        The offset to begin with.

    • Usage

        https://localhost/wp-json/gf/v2/forms/1/results?paging[page_size]=20&paging[current_page]=2&paging[offset]=30
      
  • sorting [array]

    The sorting criteria.

    • Parameters

      • key string|int

        The key to sort by.

      • direction string

        The direction. Either ASC or DESC.

      • is_numeric bool

        If the key is numeric.

    • Usage

        https://localhost/wp-json/gf/v2/forms/1/results?sorting[key]=id&sorting[direction]=ASC&sorting[is_numeric]=true
      

POST /forms/[FORM_ID]/submissions

Submits the specified form ID with the specified values.

Path

https://localhost/wp-json/gf/v2/forms/1/submissions

Response

Required Arguments

  • input_[FIELD_ID] [string]

    The input values. Replace field ID with the input that you want to submit data for.

Returns

{
  "is_valid":             true,
  "page_number":          0,
  "source_page_number":   1,
  "confirmation_message": "<div id='gform_confirmation_wrapper_6' class='gform_confirmation_wrapper '><div id='gform_confirmation_message_6' class='gform_confirmation_message_6 gform_confirmation_message'>Thanks for contacting us! We will get in touch with you shortly.<\/div><\/div>"
}

Optional Arguments

  • field_values [string]

    The field values.

  • source_page [string]

    The source page number.

  • target_page [string]

    The target page number.


Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].