Unified.to forms API

The forms API from Unified.to — 4 operation(s) for forms.

Documentation

Specifications

Schemas & Data

📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-accounting-account-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-accounting-invoice-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-accounting-transaction-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-ats-job-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-ats-candidate-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-ats-application-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-calendar-event-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-crm-contact-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-crm-company-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-crm-deal-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-commerce-item-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-commerce-review-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-hris-employee-schema.json

Other Resources

OpenAPI Specification

unified-to-forms-api-openapi.yml Raw ↑
openapi: 3.0.0
info:
  contact:
    email: hello@unified.to
    url: https://unified.to/contact
  description: One API to Rule Them All
  termsOfService: https://unified.to/tos
  title: Unified.to account forms API
  version: '1.0'
servers:
- description: North American data region
  url: https://api.unified.to
- description: European data region
  url: https://api-eu.unified.to
- description: Australian data region
  url: https://api-au.unified.to
security:
- jwt: []
tags:
- name: forms
paths:
  /forms/{connection_id}/form:
    get:
      operationId: listFormsForms
      parameters:
      - in: query
        name: limit
        required: false
        schema:
          type: number
      - in: query
        name: offset
        required: false
        schema:
          type: number
      - description: Return only results whose updated date is equal or greater to this value (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
        in: query
        name: updated_gte
        required: false
        schema:
          type: string
      - in: query
        name: sort
        required: false
        schema:
          type: string
      - in: query
        name: order
        required: false
        schema:
          type: string
      - description: Query string to search. eg. email address or name
        in: query
        name: query
        required: false
        schema:
          type: string
      - description: Fields to return
        in: query
        name: fields
        required: false
        schema:
          items:
            enum:
            - id
            - created_at
            - updated_at
            - name
            - description
            - fields
            - is_active
            - published_url
            - response_count
            - has_multiple_submissions
            - has_progress_bar
            - has_shuffle_questions
            - confirmation_message
            - confirmation_redirect_url
            - raw
            type: string
          type: array
      - description: 'Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar'
        in: query
        name: raw
        required: false
        schema:
          type: string
      - description: ID of the connection
        in: path
        name: connection_id
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FormsForms'
          description: Successful
      security:
      - jwt: []
      summary: List All Forms
      tags:
      - forms
    post:
      operationId: createFormsForm
      parameters:
      - description: Fields to return
        in: query
        name: fields
        required: false
        schema:
          items:
            enum:
            - id
            - created_at
            - updated_at
            - name
            - description
            - fields
            - is_active
            - published_url
            - response_count
            - has_multiple_submissions
            - has_progress_bar
            - has_shuffle_questions
            - confirmation_message
            - confirmation_redirect_url
            - raw
            type: string
          type: array
        type: array
      - description: 'Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar'
        in: query
        name: raw
        required: false
        schema:
          type: string
      - description: ID of the connection
        in: path
        name: connection_id
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FormsForm'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FormsForm'
          description: Successful
      security:
      - jwt: []
      summary: Create a Form
      tags:
      - forms
  /forms/{connection_id}/form/{id}:
    delete:
      operationId: removeFormsForm
      parameters:
      - description: ID of the connection
        in: path
        name: connection_id
        required: true
        schema:
          type: string
      - description: ID of the Form
        in: path
        name: id
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful
        default:
          content: {}
          description: Successful
          headers:
            Content-Type:
              required: false
              schema:
                type: string
      security:
      - jwt: []
      summary: Remove a Form
      tags:
      - forms
    get:
      operationId: getFormsForm
      parameters:
      - description: Fields to return
        in: query
        name: fields
        required: false
        schema:
          items:
            enum:
            - id
            - created_at
            - updated_at
            - name
            - description
            - fields
            - is_active
            - published_url
            - response_count
            - has_multiple_submissions
            - has_progress_bar
            - has_shuffle_questions
            - confirmation_message
            - confirmation_redirect_url
            - raw
            type: string
          type: array
        type: array
      - description: 'Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar'
        in: query
        name: raw
        required: false
        schema:
          type: string
      - description: ID of the connection
        in: path
        name: connection_id
        required: true
        schema:
          type: string
      - description: ID of the Form
        in: path
        name: id
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FormsForm'
          description: Successful
      security:
      - jwt: []
      summary: Retrieve a Form
      tags:
      - forms
    patch:
      operationId: patchFormsForm
      parameters:
      - description: Fields to return
        in: query
        name: fields
        required: false
        schema:
          items:
            enum:
            - id
            - created_at
            - updated_at
            - name
            - description
            - fields
            - is_active
            - published_url
            - response_count
            - has_multiple_submissions
            - has_progress_bar
            - has_shuffle_questions
            - confirmation_message
            - confirmation_redirect_url
            - raw
            type: string
          type: array
        type: array
      - description: 'Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar'
        in: query
        name: raw
        required: false
        schema:
          type: string
      - description: ID of the connection
        in: path
        name: connection_id
        required: true
        schema:
          type: string
      - description: ID of the Form
        in: path
        name: id
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FormsForm'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FormsForm'
          description: Successful
      security:
      - jwt: []
      summary: Update a Form
      tags:
      - forms
    put:
      operationId: updateFormsForm
      parameters:
      - description: Fields to return
        in: query
        name: fields
        required: false
        schema:
          items:
            enum:
            - id
            - created_at
            - updated_at
            - name
            - description
            - fields
            - is_active
            - published_url
            - response_count
            - has_multiple_submissions
            - has_progress_bar
            - has_shuffle_questions
            - confirmation_message
            - confirmation_redirect_url
            - raw
            type: string
          type: array
        type: array
      - description: 'Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar'
        in: query
        name: raw
        required: false
        schema:
          type: string
      - description: ID of the connection
        in: path
        name: connection_id
        required: true
        schema:
          type: string
      - description: ID of the Form
        in: path
        name: id
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FormsForm'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FormsForm'
          description: Successful
      security:
      - jwt: []
      summary: Update a Form
      tags:
      - forms
  /forms/{connection_id}/submission:
    get:
      operationId: listFormsSubmissions
      parameters:
      - in: query
        name: limit
        required: false
        schema:
          type: number
      - in: query
        name: offset
        required: false
        schema:
          type: number
      - description: Return only results whose updated date is equal or greater to this value (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
        in: query
        name: updated_gte
        required: false
        schema:
          type: string
      - in: query
        name: sort
        required: false
        schema:
          type: string
      - in: query
        name: order
        required: false
        schema:
          type: string
      - description: Query string to search. eg. email address or name
        in: query
        name: query
        required: false
        schema:
          type: string
      - description: The form ID to filter by
        in: query
        name: form_id
        required: false
        schema:
          type: string
      - description: Fields to return
        in: query
        name: fields
        required: false
        schema:
          items:
            enum:
            - id
            - created_at
            - updated_at
            - form_id
            - respondent_email
            - respondent_name
            - answers
            - raw
            type: string
          type: array
      - description: 'Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar'
        in: query
        name: raw
        required: false
        schema:
          type: string
      - description: ID of the connection
        in: path
        name: connection_id
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FormsSubmissions'
          description: Successful
      security:
      - jwt: []
      summary: List All Submissions
      tags:
      - forms
  /forms/{connection_id}/submission/{id}:
    get:
      operationId: getFormsSubmission
      parameters:
      - description: Fields to return
        in: query
        name: fields
        required: false
        schema:
          items:
            enum:
            - id
            - created_at
            - updated_at
            - form_id
            - respondent_email
            - respondent_name
            - answers
            - raw
            type: string
          type: array
        type: array
      - description: 'Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar'
        in: query
        name: raw
        required: false
        schema:
          type: string
      - description: ID of the connection
        in: path
        name: connection_id
        required: true
        schema:
          type: string
      - description: ID of the Submission
        in: path
        name: id
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FormsSubmission'
          description: Successful
      security:
      - jwt: []
      summary: Retrieve a Submission
      tags:
      - forms
components:
  schemas:
    FormsForm:
      properties:
        confirmation_message:
          type: string
        confirmation_redirect_url:
          type: string
        created_at:
          format: date-time
          type: string
        description:
          type: string
        fields:
          $ref: '#/components/schemas/property_FormsForm_fields'
        has_multiple_submissions:
          type: boolean
        has_progress_bar:
          type: boolean
        has_shuffle_questions:
          type: boolean
        id:
          type: string
        is_active:
          type: boolean
        name:
          type: string
        published_url:
          type: string
        raw:
          additionalProperties: true
          type: object
        response_count:
          type: number
        updated_at:
          format: date-time
          type: string
      required:
      - name
      type: object
    property_FormField_choices:
      description: For select/radio/checkbox fields
      items:
        type: string
      type: array
    FormsForms:
      items:
        $ref: '#/components/schemas/FormsForm'
      type: array
    property_FormsSubmission_answers:
      items:
        $ref: '#/components/schemas/FormAnswer'
      type: array
    FormField:
      properties:
        choices:
          $ref: '#/components/schemas/property_FormField_choices'
        created_at:
          format: date-time
          type: string
        default_value:
          type: string
        description:
          type: string
        id:
          type: string
        is_active:
          type: boolean
        is_required:
          type: boolean
        max:
          type: number
        max_length:
          type: number
        min:
          type: number
        min_length:
          type: number
        name:
          type: string
        order:
          type: number
        pattern:
          type: string
        type:
          enum:
          - TEXT
          - TEXTAREA
          - NUMBER
          - EMAIL
          - URL
          - DATE
          - TIME
          - DATETIME
          - PHONE
          - BOOLEAN
          - SINGLE_SELECT
          - MULTIPLE_SELECT
          - FILE_UPLOAD
          - RATING
          - SCALE
          - MATRIX
          - SECTION_HEADER
          - OTHER
          type: string
          x-speakeasy-unknown-values: allow
        updated_at:
          format: date-time
          type: string
      required:
      - name
      - type
      type: object
    FormAnswer:
      properties:
        field_id:
          type: string
        field_name:
          type: string
        file_ids:
          $ref: '#/components/schemas/property_FormAnswer_file_ids'
        value:
          type: string
      required:
      - field_id
      type: object
    FormsSubmissions:
      items:
        $ref: '#/components/schemas/FormsSubmission'
      type: array
    FormsSubmission:
      properties:
        answers:
          $ref: '#/components/schemas/property_FormsSubmission_answers'
        created_at:
          format: date-time
          type: string
        form_id:
          type: string
        id:
          type: string
        raw:
          additionalProperties: true
          type: object
        respondent_email:
          type: string
        respondent_name:
          type: string
        updated_at:
          format: date-time
          type: string
      required:
      - form_id
      - answers
      type: object
    property_FormsForm_fields:
      items:
        $ref: '#/components/schemas/FormField'
      type: array
    property_FormAnswer_file_ids:
      description: references StorageFile ID
      items:
        type: string
      type: array
  securitySchemes:
    jwt:
      in: header
      name: authorization
      type: apiKey
externalDocs:
  description: API Documentation
  url: https://docs.unified.to