Weavix Forms API

The Forms API from Weavix — 1 operation(s) for forms.

OpenAPI Specification

weavix-forms-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: weavix REST Channels & Messaging Forms API
  version: '1.0'
  x-apievangelist-generated: '2026-07-21'
  x-apievangelist-method: generated
  x-apievangelist-source: https://help.weavix.com/hc/en-us/articles/23496154594573-weavix-REST-API-Documentation
  description: 'The weavix REST API lets administrators automate actions in the weavix "Internet of Workers" frontline communication platform from outside the weavix system: manage crafts, sites (facilities), geofences, permission groups, and users; send messages to admin-defined channels and individual users; retrieve message history and form submissions; and trigger mass alerts. Faithfully modeled by API Evangelist from weavix''s published REST API documentation (no vendor-published OpenAPI exists as of 2026-07-21). Authentication uses an account API key passed as an Authorization token.'
  contact:
    name: weavix Support
    email: help@weavix.com
    url: https://help.weavix.com/hc/en-us
servers:
- url: https://api.weavix.com
  description: weavix production API
security:
- apiKeyAuth: []
tags:
- name: Forms
paths:
  /v1/core/forms/{formId}/submissions:
    get:
      operationId: getFormSubmissions
      tags:
      - Forms
      summary: Get results from a specific form
      description: Retrieves all submissions for a specific form. Each result includes the id of the submitting user, correlatable to a user via getUser.
      parameters:
      - name: formId
        in: path
        required: true
        description: The form id, found at the end of the form URL in the weavix Console.
        schema:
          type: string
      responses:
        '200':
          description: Form submissions
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: Account API key passed as the Authorization request header. Keys are created in the weavix Console under Configuration -> API Keys (Secret + Authorization Token). Requests without a valid token receive 401.