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

# Verify New User

> Verify new user profile.



## OpenAPI

````yaml /spec/oas.yaml get /users/verify_email
openapi: 3.0.3
info:
  title: CRO Software API
  version: 2.x
  description: >-
    REST API for the CRO Software waste management and logistics platform.
    Authenticate via OAuth2 (client_credentials or authorization_code). All
    requests require a Bearer token and an X-Tenant-Id header.
servers:
  - url: https://api.crosoftware.com/v0
    description: Production
security: []
paths:
  /users/verify_email:
    get:
      tags:
        - Users
      summary: Verify New User
      description: Verify new user profile.
      operationId: users_verify_new_user
      parameters:
        - name: x-api-version
          in: header
          required: false
          schema:
            type: string
            description: Version identifier (date format).
        - name: token
          in: query
          required: true
          schema:
            type: string
            description: Email verification token.
        - name: verified_redirect_url
          in: query
          required: false
          schema:
            type: string
            description: Redirect URL.
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/email.verify.response_msg'
      security:
        - oauth2:
            - api
components:
  schemas:
    email.verify.response_msg:
      type: string
      description: Email verification response message.
  securitySchemes:
    oauth2:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: REPLACE_WITH_AUTH_BASE_URL/oauth2/token
          scopes:
            api: General API access
            webhook: Webhook management
        authorizationCode:
          authorizationUrl: REPLACE_WITH_AUTH_BASE_URL/oauth2/auth
          tokenUrl: REPLACE_WITH_AUTH_BASE_URL/oauth2/token
          scopes:
            api: General API access
            webhook: Webhook management

````