> ## Documentation Index
> Fetch the complete documentation index at: https://docs.scute.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Create verification with intent

> Create a verification using intent metadata (Thread integration)



## OpenAPI

````yaml /swagger.json post /v1/verify/{app_id}/verifications/intent
openapi: 3.0.1
info:
  title: Scute API
  version: v1
  description: API for managing users in Scute applications
servers:
  - url: https://{defaultHost}
    variables:
      defaultHost:
        default: api.scute.io
  - url: http://localhost:3333
    description: Development server
security:
  - apiSecret: []
    userAccess: []
paths:
  /v1/verify/{app_id}/verifications/intent:
    parameters:
      - name: app_id
        in: path
        description: Application ID
        required: true
        schema:
          type: string
    post:
      tags:
        - Verification
      summary: Create verification with intent
      description: Create a verification using intent metadata (Thread integration)
      operationId: createVerificationWithIntent
      parameters: []
      responses:
        '200':
          description: successful
          content:
            application/json:
              schema:
                type: object
                properties:
                  verification_id:
                    type: string
                    description: Unique identifier for the verification request
                  message:
                    type: string
                  status:
                    type: integer
                    example: 200
                required:
                  - verification_id
        '400':
          description: bad request - invalid email
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    description: Error message
                  error_code:
                    type: string
                    description: Error code
        '401':
          description: unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    description: Error message
        '404':
          description: app not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    description: Error message
      security:
        - userAccess: []
components:
  securitySchemes:
    apiSecret:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: API Secret token
    userAccess:
      type: apiKey
      name: X-Authorization
      in: header
      description: User Access token

````