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

# Retrieves asset operator relationships and their allowed entities

> Retrieves the companies the current user's company operates assets for, and the companies the current user's company has appointed as its asset operators, along with the allowed company entities for each.



## OpenAPI

````yaml /specs/fuelboss/fuelboss-api.json get /v1/asset-operators/companies
openapi: 3.1.1
info:
  title: FuelBoss API
  description: >-
    REST API providing a powerful and easy way to manage your companies
    nominations and operations.
  termsOfService: https://www.ofiniti.com/legal/platform-service-terms
  contact:
    name: Support Team
    email: itops@ofiniti.com
  version: 1.15.1
servers:
  - url: https://api.demo.fuelboss.net
    description: Demo (sandbox for testing and integration development)
  - url: https://api.fuelboss.net
    description: Production
security:
  - bearerAuth: []
tags:
  - name: OAuth
  - name: Nominations
  - name: Entity management
  - name: Operations
  - name: Common
  - name: Webhooks
  - name: Webhook events
paths:
  /v1/asset-operators/companies:
    get:
      tags:
        - Common
      summary: Retrieves asset operator relationships and their allowed entities
      description: >-
        Retrieves the companies the current user's company operates assets for,
        and the companies the current user's company has appointed as its asset
        operators, along with the allowed company entities for each.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/FuelBoss.Api.Contracts.Api.AssetOperator.AssetOperatorCompanies
                description: >-
                  Your company's asset-operator relationships in both
                  directions. See

                  [Nominations with an Asset
                  Operator](/fuelboss/api-integration-guide#nominations-with-an-asset-operator).
components:
  schemas:
    FuelBoss.Api.Contracts.Api.AssetOperator.AssetOperatorCompanies:
      type: object
      properties:
        companiesIAmOperatorFor:
          type: array
          items:
            $ref: >-
              #/components/schemas/FuelBoss.Api.Contracts.Api.AssetOperator.AssetOperatorCompany
            description: >-
              A company in an asset-operator relationship with your company,
              with the entities

              permitted for that relationship.
          description: Companies your company operates assets for.
        myAssetOperators:
          type: array
          items:
            $ref: >-
              #/components/schemas/FuelBoss.Api.Contracts.Api.AssetOperator.AssetOperatorCompany
            description: >-
              A company in an asset-operator relationship with your company,
              with the entities

              permitted for that relationship.
          description: Companies you have appointed as your asset operators.
      additionalProperties: false
      description: >-
        Your company's asset-operator relationships in both directions. See

        [Nominations with an Asset
        Operator](/fuelboss/api-integration-guide#nominations-with-an-asset-operator).
    FuelBoss.Api.Contracts.Api.AssetOperator.AssetOperatorCompany:
      type: object
      properties:
        companyIdentifier:
          type: string
          description: >-
            Company identifier (matches [Get
            Companies](/api-reference/common/retrieves-all-companies-available)).
        allowedEntityReferences:
          type: array
          items:
            type: string
          description: >-
            Company entity references permitted for this relationship (from [Get
            Company
            Entities](/api-reference/entity-management/retrieves-all-entities-available-for-your-company)).
      additionalProperties: false
      description: >-
        A company in an asset-operator relationship with your company, with the
        entities

        permitted for that relationship.
  securitySchemes:
    bearerAuth:
      type: http
      description: >-
        Access token obtained from the /oauth/token endpoint using your client
        credentials.
      scheme: bearer
      bearerFormat: JWT

````