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

# Post apiusersverify

> Transfers a social account from one user to another when a conflict is detected. Disconnects the account from the previous user and connects it to the current user's profile. Used when a social account is already linked to a different user (MAXIMUM_ACCOUNT_LINKED error).



## OpenAPI

````yaml /api-reference/openapi.documented.json post /api/users/verify
openapi: 3.0.2
info:
  title: Snag Solutions - API Docs
  description: >-
    Documentation for Loyalty & Socials APIs. Some endpoints require an API key
    to authenticate. To obtain a key, reach out to the Snag Solutions team at
    support@snagsolutions.io.
  version: '0.1'
servers:
  - url: https://admin.snagsolutions.io/
    description: Production
security: []
paths:
  /api/users/verify:
    post:
      tags:
        - Identity
      description: >-
        Transfers a social account from one user to another when a conflict is
        detected. Disconnects the account from the previous user and connects it
        to the current user's profile. Used when a social account is already
        linked to a different user (MAXIMUM_ACCOUNT_LINKED error).
      parameters: []
      requestBody:
        description: Body
        content:
          application/json:
            schema:
              type: object
              properties:
                websiteId:
                  type: string
                  format: uuid
                organizationId:
                  type: string
                  format: uuid
                accountLinkData:
                  type: string
                userId:
                  type: string
                  format: uuid
                walletAddress:
                  type: string
                  title: Wallet Address
                  description: The wallet address of the user
                  example: '0x1234567890abcdef1234567890abcdef12345678'
              required:
                - accountLinkData
      responses:
        '200':
          description: '200'
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                required:
                  - message
        '400':
          description: '400'
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    title: Message
                    description: Error message
                    example: Request body is invalid
                required:
                  - message
                title: Bad Request Response
                description: Schema for bad request response
        '403':
          description: '403'
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    title: Message
                    description: Error message
                    example: Forbidden, Could not validate api key
                required:
                  - message
                title: Forbidden Response
                description: Schema for forbidden response
                example: Forbidden, Could not validate api key
        '500':
          description: '500'
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    title: Success
                    description: Indicates operation success
                    example: false
                  message:
                    type: string
                    title: Message
                    description: Error message
                    example: Internal server error
                  debugInfo:
                    type: string
                    title: Debug Info
                    description: Optional debug information
                    example: Stack trace or additional error details
                required:
                  - success
                  - message
                title: Internal Server Error Response
                description: Schema for internal server error response
      security:
        - apiKeyAuth: []
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY

````