> ## 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.

# Send registration magic link

> Send a registration magic link email to the user. The user will receive an email with a link to complete their registration.



## OpenAPI

````yaml /swagger.json post /v1/auth/{app_id}/magic_links/register
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/auth/{app_id}/magic_links/register:
    parameters:
      - name: app_id
        in: path
        required: true
        description: App ID
        schema:
          type: string
    post:
      tags:
        - Magic Links
      summary: Send registration magic link
      description: >-
        Send a registration magic link email to the user. The user will receive
        an email with a link to complete their registration.
      operationId: sendRegisterMagicLink
      parameters: []
      responses:
        '200':
          description: successful
          content:
            application/json:
              schema:
                type: object
                properties:
                  magic_link:
                    type: object
                    properties:
                      id:
                        type: string
                        description: Magic link ID for polling status
                  user_meta_errors:
                    type: object
                    nullable: true
                    description: Validation errors for user metadata if provided
        '400':
          description: invalid identifier
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  error_code:
                    type: string
                    example: invalid_identifier
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

````