> ## Documentation Index
> Fetch the complete documentation index at: https://support.xignature.co.id/llms.txt
> Use this file to discover all available pages before exploring further.

# Check User Status



## OpenAPI

````yaml GET /auth/check/{identity}
openapi: 3.1.0
info:
  title: OPEN API V3
  version: 1.0.0
  description: >-
    <img
    src="https://content.pstmn.io/4f857c87-5f73-40e7-8055-076434623fe6/djMuZHJhd2lvICgxKS5wbmc="
    alt="">
servers: []
security: []
paths:
  /auth/check/{identity}:
    parameters:
      - name: identity
        in: path
        required: true
        example: '3175032508940005'
        schema:
          type: integer
    get:
      summary: Check User Status
      parameters:
        - name: fullname
          in: query
          required: false
          description: Optional for checking match score name
          example: Pandu Septian Gumilar
          schema:
            type: string
      responses:
        '200':
          headers:
            Date:
              schema:
                type: string
              example: Thu, 06 Jul 2023 03:39:53 GMT
            Server:
              schema:
                type: string
              example: Apache
            Content-Security-Policy:
              schema:
                type: string
              example: >-
                default-src 'self'; font-src *;img-src * data:; script-src *;
                style-src *
            Cross-Origin-Embedder-Policy:
              schema:
                type: string
              example: require-corp
            Cross-Origin-Opener-Policy:
              schema:
                type: string
              example: same-origin
            Cross-Origin-Resource-Policy:
              schema:
                type: string
              example: same-origin
            Origin-Agent-Cluster:
              schema:
                type: string
              example: '?1'
            Referrer-Policy:
              schema:
                type: string
              example: strict-origin
            Strict-Transport-Security:
              schema:
                type: string
              example: max-age=31536000; includeSubDomains; preload
            X-Content-Type-Options:
              schema:
                type: string
              example: nosniff
            X-DNS-Prefetch-Control:
              schema:
                type: string
              example: 'off'
            X-Download-Options:
              schema:
                type: string
              example: noopen
            X-Frame-Options:
              schema:
                type: string
              example: SAMEORIGIN
            X-Permitted-Cross-Domain-Policies:
              schema:
                type: string
              example: none
            X-XSS-Protection:
              schema:
                type: integer
              example: 1; mode=block
            Vary:
              schema:
                type: string
              example: Origin,Accept-Encoding
            Access-Control-Allow-Credentials:
              schema:
                type: boolean
              example: 'true'
            Permissions-Policy:
              schema:
                type: string
              example: >-
                geolocation=(),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()
            Content-Type:
              schema:
                type: string
              example: application/json; charset=utf-8
            ETag:
              schema:
                type: string
              example: W/"125-lg/9OI2SGoydOtPcc+vDvmclBSI-gzip"
            Content-Encoding:
              schema:
                type: string
              example: gzip
            Content-Length:
              schema:
                type: integer
              example: '195'
            Keep-Alive:
              schema:
                type: string
              example: timeout=15, max=100
            Connection:
              schema:
                type: string
              example: Keep-Alive
          description: Check User Status
          content:
            application/json:
              schema:
                type: object
                properties:
                  statusCode:
                    type: integer
                  message:
                    type: string
                  data:
                    type: object
                    properties:
                      xignatureId:
                        type: string
                      email:
                        type: string
                        format: email
                      phone:
                        type: string
                        format: utc-millisec
                      user:
                        type: object
                        properties:
                          status:
                            type: string
                          description:
                            type: string
                      certificate:
                        type: object
                        properties:
                          status:
                            type: string
                          description:
                            type: string
              example:
                statusCode: 200
                message: Get user status successfully
                data:
                  xignatureId: pandusep2508
                  email: pandu.septian@xignature.co.id
                  phone: '628577864780811'
                  user:
                    status: active
                    description: User is active
                  certificate:
                    status: active
                    description: Certificate is active

````