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

# Setup da Empresa

> Retorna exclusivamente as configurações primordiais e os status de rotinas da empresa especificada.

### Path

<ParamField path="id" type="string" required>
  UUID da empresa vinculada ao setup.
</ParamField>

### Response

<ResponseExample>
  ```json Response theme={null}
  {
    "settings": {
      "defaultWarehouseId": "...",
      "autoApproveOrders": true,
      "theme": "dark"
    },
    "status": "ACTIVE"
  }
  ```
</ResponseExample>


## OpenAPI

````yaml get /companies/{id}/setup
openapi: 3.0.0
info:
  title: Hub Marketplace API
  description: API for managing marketplace listings and keys
  version: '1.0'
  contact: {}
servers: []
security: []
tags:
  - name: listings
    description: ''
paths:
  /companies/{id}/setup:
    get:
      tags:
        - Companies
      summary: Get company setup configurations
      operationId: CompaniesController_getSetup
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: Return company settings and status.
        '404':
          description: Company not found.
      security:
        - bearer: []
components: {}

````