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

# Remove Location From Company



## OpenAPI

````yaml https://dev-api.cattix.com/openapi.json delete /api/v1/local-seo/locations/{location_id}/company
openapi: 3.1.0
info:
  title: CATTIX API
  description: CATTIX Backend API
  version: 0.107.0
servers:
  - url: http://localhost:8000
    description: Local
  - url: https://dev-api.cattix.com
    description: Development
  - url: https://staging-api.cattix.com
    description: Staging
  - url: https://api.cattix.com
    description: Production
security: []
paths:
  /api/v1/local-seo/locations/{location_id}/company:
    delete:
      tags:
        - Local SEO
      summary: Remove Location From Company
      operationId: >-
        remove_location_from_company_api_v1_local_seo_locations__location_id__company_delete
      parameters:
        - name: location_id
          in: path
          required: true
          schema:
            type: string
            title: Location Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GoogleBusinessLocationSchema'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - OAuth2PasswordBearer: []
components:
  schemas:
    GoogleBusinessLocationSchema:
      properties:
        id:
          type: string
          title: Id
          description: Google identifier for this location
        title:
          type: string
          title: Title
          description: Location name
        store_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Store Code
          description: External identifier for this location
        maps_uri:
          anyOf:
            - type: string
              maxLength: 2083
              minLength: 1
              format: uri
            - type: 'null'
          title: Maps Uri
          description: A link to the location on Maps
        storefront_address:
          anyOf:
            - $ref: '#/components/schemas/GooglePostalAddressSchema'
            - type: 'null'
          description: Physical address of the storefront
      type: object
      required:
        - id
        - title
      title: GoogleBusinessLocationSchema
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    GooglePostalAddressSchema:
      properties:
        region_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Region Code
          description: >-
            CLDR region code of the country/region of the address. This is
            usually a two-letter code (e.g. 'UA', 'US').
        language_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Language Code
          description: The BCP-47 language code of the contents of this address (if known).
        postal_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Postal Code
          description: Postal code of the address.
        administrative_area:
          anyOf:
            - type: string
            - type: 'null'
          title: Administrative Area
          description: >-
            Top-level administrative subdivision of the country/region (e.g.
            state, province, oblast).
        locality:
          anyOf:
            - type: string
            - type: 'null'
          title: Locality
          description: Generally refers to the city/town portion of the address.
        sublocality:
          anyOf:
            - type: string
            - type: 'null'
          title: Sublocality
          description: Sublocality of the address (e.g. neighborhood, district).
        address_lines:
          items:
            type: string
          type: array
          title: Address Lines
          description: >-
            Unstructured address lines describing the lower levels of an
            address.
      type: object
      title: GooglePostalAddressSchema
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    OAuth2PasswordBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: api/v1/users/authorization/token

````