action exavault_get_form_entries { label: "Get form data entries for a receive" description: "Returns the form data entries for a specific form for a receive. Optional parameters can be included in the call to manage larger data sets.\n" provider: exavault method: GET path: "/forms/entries/{id}" encoding: json input: { type: "object" properties: { "ev-access-token": { type: "string" } "ev-api-key": { type: "string" } id: { type: "integer" } limit: { type: "integer" } offset: { type: "integer" } } required: ["ev-access-token", "ev-api-key", "id"] additionalProperties: false } output: { type: "object" description: "Response object of the form data." properties: { data: { type: "array" description: "Object submissions data for form." items: { type: "object" description: "Contains the data submitted for a form." properties: { attributes: { type: "object" properties: { created: { type: "string" format: "date-time" description: "Timestamp of the submission" } fields: { type: "array" items: { type: "object" description: "Attributes of the form including its included fields and css styles" properties: { name: { type: "string" description: "Field name" } order: { type: "integer" format: "int32" description: "Field order in the form" } value: { type: "string" description: "Field value" } } } } modified: { type: "string" format: "date-time" description: "Timestamp of the field modified date" } paths: { type: "array" description: "Full paths to files associated with the form submission" items: { type: "string" } } status: { type: "string" description: "Form entry status" enum: ["pending", "completed"] } } } id: { type: "integer" format: "int64" description: "Form entry id" } type: { type: "string" description: "Type of item. \"formEntry\"" } } } } responseStatus: { type: "integer" description: "Http status code of the response. " } returnedResults: { type: "integer" description: "Number of returned results. " } totalResults: { type: "integer" description: "Total results found. " } } } }