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

# Registration



## OpenAPI

````yaml POST /auth/registration
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/registration:
    parameters: []
    post:
      summary: Registration
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                nik:
                  type: string
                  format: utc-millisec
                fullname:
                  type: string
                email:
                  type: string
                  format: email
                phone:
                  type: string
                  format: utc-millisec
                birthdate:
                  type: string
                  format: date
                selfie:
                  type: string
                ktp:
                  type: string
            example:
              nik: '3170000000000005'
              fullname: Pandu Doe
              email: pandu.septian18@xignature.co.id
              phone: '0857784200000'
              birthdate: '1994-08-25'
              selfie: b64 string
              ktp: b64 string
      responses:
        '201':
          headers:
            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
            X-DNS-Prefetch-Control:
              schema:
                type: string
              example: 'off'
            X-Frame-Options:
              schema:
                type: string
              example: SAMEORIGIN
            Strict-Transport-Security:
              schema:
                type: string
              example: max-age=31536000; includeSubDomains; preload
            X-Download-Options:
              schema:
                type: string
              example: noopen
            X-Content-Type-Options:
              schema:
                type: string
              example: nosniff
            Origin-Agent-Cluster:
              schema:
                type: string
              example: '?1'
            X-Permitted-Cross-Domain-Policies:
              schema:
                type: string
              example: none
            Referrer-Policy:
              schema:
                type: string
              example: strict-origin
            X-XSS-Protection:
              schema:
                type: integer
              example: 1; mode=block
            Vary:
              schema:
                type: string
              example: Origin
            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
            Content-Length:
              schema:
                type: integer
              example: '342'
            ETag:
              schema:
                type: string
              example: W/"156-RvRZE/txSyYv6yEKknFYWzS21I0"
            Date:
              schema:
                type: string
              example: Thu, 06 Jul 2023 03:04:05 GMT
            Connection:
              schema:
                type: string
              example: keep-alive
            Keep-Alive:
              schema:
                type: string
              example: timeout=5
          description: Registration
          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: Registration successfully
                data:
                  xignatureId: pandus31L986
                  email: pandu.septian1@xignature.co.id
                  phone: '62857786478081'
                  user:
                    status: waiting
                    description: Waiting for validation and activation
                  certificate:
                    status: waiting
                    description: Certificate is in the process of being generated

````