Description Usage Arguments Value Examples
Deletes a single page (form or subform) from a profile. Use caution when deleting forms. It should only be done with consideration for existing data referencing the form.
| 1 | delete_page(server_name, profile_id, page_id, access_token)
 | 
| server_name | String of the iFormBuilder server name. | 
| profile_id | Integer of the iFormBuilder profile ID. | 
| page_id | ID of the option list to be deleted. | 
| access_token | Access token produced by  | 
ID of the page that was deleted.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | ## Not run: 
# Pull out ID of page to delete
page_to_delete = forms_list$id[forms_list$name == "test_form_p"]
# Get access_token
access_token <- get_iform_access_token(
  server_name = "your_server_name",
  client_key_name = "your_client_key_name",
  client_secret_name = "your_client_secret_name")
# Delete option list
deleted_page_id <- delete_page(
  server_name = "your_server_name",
  profile_id = "your_profile_id",
  page_id,
  access_token = access_token)
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.