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

# Remove License From D B

> Remove the license from a particular module owner from the database.

It is not permitted to remove licenses from SuperOffice



## OpenAPI

````yaml /openapi/rest/openapi-v3-License.json delete /api/v1/License/{moduleOwner}
openapi: 3.0.0
info:
  version: v1-REST
  title: SuperOffice REST API v1
  description: SuperOffice REST API - License
  contact:
    name: SuperOffice DevNet
    url: https://docs.superoffice.com/en/api/index.html
    email: sdk@superoffice.com
servers:
  - url: http://localhost:56350
  - url: https://localhost:56350
security: []
tags: []
externalDocs:
  description: >-
    The SuperOffice DevNet Community has more documentation, examples, and
    discussion forums.
  url: https://community.superoffice.com/en/developer/
paths:
  /api/v1/License/{moduleOwner}:
    delete:
      tags:
        - License
      summary: Remove License From D B
      description: |-
        Remove the license from a particular module owner from the database.

        It is not permitted to remove licenses from SuperOffice
      operationId: v1License_RemoveLicenseFromDB
      parameters:
        - name: moduleOwner
          in: path
          description: Name of the module owner to remove license from.
          required: true
          schema:
            type: string
        - name: SO-AppToken
          in: header
          description: >-
            The application token that identifies the partner app. Used when
            calling Online WebAPI from a server.
          required: false
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SuperOffice.CRM.Services.LicenseResult'
            text/json:
              schema:
                $ref: '#/components/schemas/SuperOffice.CRM.Services.LicenseResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/SuperOffice.CRM.Services.LicenseResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/SuperOffice.CRM.Services.LicenseResult'
            application/json-patch+json:
              schema:
                $ref: '#/components/schemas/SuperOffice.CRM.Services.LicenseResult'
            application/merge-patch+json:
              schema:
                $ref: '#/components/schemas/SuperOffice.CRM.Services.LicenseResult'
      security:
        - SuperOffice_Password: []
          SuperId_Authentication: []
components:
  schemas:
    SuperOffice.CRM.Services.LicenseResult:
      description: "Carrier object for LicenseResult.\r\nServices for the LicenseResult Carrier is available from the <see cref=\"T:SuperOffice.CRM.Services.ILicenseAgent\">License Agent</see>."
      type: object
      properties:
        Succeeded:
          description: ''
          type: boolean
        Reason:
          description: ''
          type: string
        TableRight:
          $ref: '#/components/schemas/SuperOffice.CRM.Security.TableRight'
        FieldProperties:
          description: >-
            Field property dictionary mapping field names to field access
            rights.
          type: object
          additionalProperties:
            $ref: '#/components/schemas/SuperOffice.CRM.Security.FieldProperty'
    SuperOffice.CRM.Security.TableRight:
      description: "Wraps a table right together with an explanatory reason.\r\nCode can indicate why access is restricted."
      type: object
      properties:
        Mask:
          type: string
        Reason:
          type: string
    SuperOffice.CRM.Security.FieldProperty:
      description: >-
        Class holding properties like field length, field type about a field in
        the carrier.
      type: object
      properties:
        FieldRight:
          $ref: '#/components/schemas/SuperOffice.CRM.Security.FieldRight'
        FieldType:
          type: string
        FieldLength:
          format: int32
          description: ''
          type: integer
    SuperOffice.CRM.Security.FieldRight:
      description: "Wraps the field right together with an explanatory reason.\r\nAlso adds logical operators to the field rights so that they can be easily combined."
      type: object
      properties:
        Mask:
          type: string
        Reason:
          type: string

````

## Related topics

- [Remove License From D B](/en/api/reference/restful/agent/license_agent/remove-license-from-d-b.md)
- [Remove Licenses](/en/api/reference/restful/agent/user_agent/remove-licenses.md)
- [Activate license](/en/admin/license/activate.md)
- [NSLicenseAgent](/en/automation/crmscript/reference/CRMScript.NetServer.NSLicenseAgent.md)
- [SuperOffice.WebApi.Data.License RemoveLicenseFromDBRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.License_RemoveLicenseFromDBRequest.md)
- [SuperOffice.WebApi.Data.User RemoveLicensesRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.User_RemoveLicensesRequest.md)
