# Get a single FormSubmission activity

GET https://api.close.com/api/v1/activity/form_submission/{id}/

Reference: https://developer.close.com/api/resources/activities/form-submissions/get

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: Close API
  version: 1.0.0
paths:
  /activity/form_submission/{id}/:
    get:
      operationId: get
      summary: Get a single FormSubmission activity
      tags:
        - subpackage_activitiesFormSubmissions
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
        - name: _fields
          in: query
          description: Comma-separated list of fields to include in the response.
          required: false
          schema:
            type: string
        - name: Authorization
          in: header
          description: Basic authentication
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FormSubmissionActivity'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                description: Any type
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                description: Any type
        '404':
          description: Not found
          content:
            application/json:
              schema:
                description: Any type
servers:
  - url: https://api.close.com/api/v1
components:
  schemas:
    FormSubmissionActivityValues:
      oneOf:
        - type: string
        - type: boolean
      title: FormSubmissionActivityValues
    FormSubmissionActivityValuesByName:
      oneOf:
        - type: string
        - type: boolean
      title: FormSubmissionActivityValuesByName
    FormSubmissionActivity:
      type: object
      properties:
        _type:
          type: string
        activity_at:
          type:
            - string
            - 'null'
          format: date-time
        contact_id:
          type:
            - string
            - 'null'
        created_by:
          type:
            - string
            - 'null'
        created_by_name:
          type:
            - string
            - 'null'
        date_created:
          type: string
          format: date-time
        date_updated:
          type: string
          format: date-time
        form_configuration_id:
          type: string
        form_id:
          type: string
        form_name:
          type:
            - string
            - 'null'
        id:
          type: string
        ip_address:
          type:
            - string
            - 'null'
        lead_id:
          type:
            - string
            - 'null'
        organization_id:
          type: string
        origin:
          type:
            - string
            - 'null'
        source_url:
          type:
            - string
            - 'null'
        source_url_normalized:
          type:
            - string
            - 'null'
        updated_by:
          type:
            - string
            - 'null'
        updated_by_name:
          type:
            - string
            - 'null'
        user_id:
          type:
            - string
            - 'null'
        user_name:
          type:
            - string
            - 'null'
        users:
          type: array
          items:
            type: string
        values:
          type: object
          additionalProperties:
            oneOf:
              - $ref: '#/components/schemas/FormSubmissionActivityValues'
              - type: 'null'
        values_by_name:
          type: object
          additionalProperties:
            oneOf:
              - $ref: '#/components/schemas/FormSubmissionActivityValuesByName'
              - type: 'null'
      required:
        - _type
        - activity_at
        - contact_id
        - created_by
        - date_created
        - date_updated
        - form_configuration_id
        - form_id
        - id
        - ip_address
        - lead_id
        - organization_id
        - origin
        - source_url
        - source_url_normalized
        - updated_by
        - user_id
        - users
        - values
        - values_by_name
      title: FormSubmissionActivity
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: basic
    OAuth2:
      type: http
      scheme: bearer

```