REST API

REST API documentation API documentation version v1

Base URL: https://cloud.kaaiot.com/api/v1/am

Asset types

Operations on asset types.

/asset-types post get

post /asset-types

Creates a new item.

Secured by oauth_2_0 with scopes:
  • tenant:asset-type:create

AM supports OAuth 2.0 for authenticating all API requests.

Body

Media type: application/json

Type: object

Properties

  • type: required(string - pattern: ^[A-Z0-9_]{2,50}+$)

    Type.

  • displayName: required(string)

    Display name.

  • description: optional (string)

    Description.

  • definitionJsonSchema: required(string)

    Asset validation JSON schema.

  • uiJsonSchema: optional (string)

    UI JSON schema.

Example:

{
  "type": "BUILDING",
  "displayName": "building",
  "description": "Asset type that represents building",
  "definitionJsonSchema": "{\"$id\":\"https://example.com/employee.schema.json\",\"$schema\":\"https://json-schema.org/draft/2020-12/schema\",\"title\":\"Vehicleassettype\",\"description\":\"Vehicleassettype\",\"type\":\"object\",\"properties\":{\"make\":{\"description\":\"Make\",\"type\":\"string\"},\"model\":{\"description\":\"Model\",\"type\":\"string\"},\"license_plate_number\":{\"description\":\"Licenseplatenumber\",\"type\":\"string\"}}}",
  "uiJsonSchema": "{\"$id\":\"https://example.com/employee.schema.json\",\"$schema\":\"https://json-schema.org/draft/2020-12/schema\",\"title\":\"Vehicleassettype\",\"description\":\"Vehicleassettype\",\"type\":\"object\",\"properties\":{\"make\":{\"description\":\"Make\",\"type\":\"string\"},\"model\":{\"description\":\"Model\",\"type\":\"string\"},\"license_plate_number\":{\"description\":\"Licenseplatenumber\",\"type\":\"string\"}}}"
}

HTTP status code 201

Item is successfully created.

Headers

  • Location: required(string)

    URI in format {schema}://{host}/am/api/v1/asset-types/{assetTypeId}

    Example:

    https://cloud.kaaiot.com/am/api/v1/asset-types/47e17fc5-060c-4923-b315-d17f6a1bf8d6

HTTP status code 400

Invalid request.

Body

Media type: application/json

Type: object

Properties

  • message: required(string)

    Detailed error description.

HTTP status code 401

Request is not authenticated.

HTTP status code 403

Principal does not have sufficient permissions to perform this operation.

Secured by oauth_2_0

Headers

  • Authorization: optional (string)

    Used to send a valid OAuth 2 access token. Example: "Authorization: Bearer 'access_token'" where 'access_token' must be replaced by a valid OAuth access token. This header is needed only if API authentication is enabled for the service.

get /asset-types

Retrieves list.

Secured by oauth_2_0 with scopes:
  • asset-type:read

AM supports OAuth 2.0 for authenticating all API requests.

Query Parameters

  • type: optional (string)

    Type. Supports partial match.

    Example:

    BUILDING
  • description: optional (string)

    Description. Supports partial match.

    Example:

    myDescription
  • page: optional (number - default: 0)

    Page number.

    Example:

    0
  • size: optional (number - default: 100)

    Page size.

    Example:

    10
  • sort: optional (one of createdAt, updatedAt - default: createdAt)

    Field to sort by.

    Example:

    updatedAt
  • sortOrder: optional (one of asc, desc - default: desc)

    Sort direction.

    Example:

    asc

HTTP status code 200

List is successfully retrieved.

Body

Media type: application/json

Type: object

Properties

  • totalElements: required(integer)

    Total number of elements available for retrieval.

  • content: required(array of ItemResponse)

    Items: ItemResponse

    • id: required(string)

      ID.

    • type: required(string - pattern: ^[A-Z0-9_]{2,50}+$)

      Type.

    • displayName: required(string)

      Display name.

    • description: optional (string)

      Description.

    • definitionJsonSchema: optional (string)

      Asset validation JSON schema.

    • uiJsonSchema: optional (string)

      UI JSON schema.

    • tenantId: required(object)

      Tenant ID.

      • createdAt: required(datetime)

        Timestamp in ISO 8601 format (UTC timezone) showing when the record was created.

        Example:

        2023-06-30T12:30:54.540Z
      • updatedAt: required(datetime)

        Timestamp in ISO 8601 format (UTC timezone) showing when the record was last updated.

        Example:

        2023-06-30T12:30:54.540Z

    Example:

    {
      "content": [
        {
          "id": "47e17fc5-060c-4923-b315-d17f6a1bf8d6",
          "type": "BUILDING",
          "displayName": "building",
          "description": "Asset type that represents building",
          "tenantId": "f59a5f45-875d-4dcb-95eb-b017ef9a0638",
          "definitionJsonSchema": "{\"$id\":\"https://example.com/employee.schema.json\",\"$schema\":\"https://json-schema.org/draft/2020-12/schema\",\"title\":\"Vehicleassettype\",\"description\":\"Vehicleassettype\",\"type\":\"object\",\"properties\":{\"make\":{\"description\":\"Make\",\"type\":\"string\"},\"model\":{\"description\":\"Model\",\"type\":\"string\"},\"license_plate_number\":{\"description\":\"Licenseplatenumber\",\"type\":\"string\"}}}",
          "uiJsonSchema": "{\"$id\":\"https://example.com/employee.schema.json\",\"$schema\":\"https://json-schema.org/draft/2020-12/schema\",\"title\":\"Vehicleassettype\",\"description\":\"Vehicleassettype\",\"type\":\"object\",\"properties\":{\"make\":{\"description\":\"Make\",\"type\":\"string\"},\"model\":{\"description\":\"Model\",\"type\":\"string\"},\"license_plate_number\":{\"description\":\"Licenseplatenumber\",\"type\":\"string\"}}}",
          "createdAt": "2023-06-30T12:30:54.540Z",
          "updatedAt": "2023-06-30T12:30:54.541Z"
        }
      ],
      "totalElements": 1
    }
    

    HTTP status code 401

    Request is not authenticated.

    Secured by oauth_2_0

    Headers

    • Authorization: optional (string)

      Used to send a valid OAuth 2 access token. Example: "Authorization: Bearer 'access_token'" where 'access_token' must be replaced by a valid OAuth access token. This header is needed only if API authentication is enabled for the service.

    /asset-types/{assetTypeId} get put delete

    get /asset-types/{assetTypeId}

    Retrieves item.

    Secured by oauth_2_0 with scopes:
    • asset-type:read

    AM supports OAuth 2.0 for authenticating all API requests.

    URI Parameters

    • assetTypeId: required(string)

      ID

    HTTP status code 200

    Item is successfully retrieved.

    Body

    Media type: application/json

    Type: object

    Properties

    • id: required(string)

      ID.

    • type: required(string - pattern: ^[A-Z0-9_]{2,50}+$)

      Type.

    • displayName: required(string)

      Display name.

    • description: optional (string)

      Description.

    • definitionJsonSchema: optional (string)

      Asset validation JSON schema.

    • uiJsonSchema: optional (string)

      UI JSON schema.

    • tenantId: required(object)

      Tenant ID.

      • createdAt: required(datetime)

        Timestamp in ISO 8601 format (UTC timezone) showing when the record was created.

        Example:

        2023-06-30T12:30:54.540Z
      • updatedAt: required(datetime)

        Timestamp in ISO 8601 format (UTC timezone) showing when the record was last updated.

        Example:

        2023-06-30T12:30:54.540Z

      Example:

      {
        "id": "47e17fc5-060c-4923-b315-d17f6a1bf8d6",
        "type": "BUILDING",
        "displayName": "building",
        "description": "Asset type that represents building",
        "tenantId": "f59a5f45-875d-4dcb-95eb-b017ef9a0638",
        "definitionJsonSchema": "{\"$id\":\"https://example.com/employee.schema.json\",\"$schema\":\"https://json-schema.org/draft/2020-12/schema\",\"title\":\"Vehicleassettype\",\"description\":\"Vehicleassettype\",\"type\":\"object\",\"properties\":{\"make\":{\"description\":\"Make\",\"type\":\"string\"},\"model\":{\"description\":\"Model\",\"type\":\"string\"},\"license_plate_number\":{\"description\":\"Licenseplatenumber\",\"type\":\"string\"}}}",
        "uiJsonSchema": "{\"$id\":\"https://example.com/employee.schema.json\",\"$schema\":\"https://json-schema.org/draft/2020-12/schema\",\"title\":\"Vehicleassettype\",\"description\":\"Vehicleassettype\",\"type\":\"object\",\"properties\":{\"make\":{\"description\":\"Make\",\"type\":\"string\"},\"model\":{\"description\":\"Model\",\"type\":\"string\"},\"license_plate_number\":{\"description\":\"Licenseplatenumber\",\"type\":\"string\"}}}",
        "createdAt": "2023-06-30T12:30:54.540Z",
        "updatedAt": "2023-06-30T12:30:54.541Z"
      }

      HTTP status code 401

      Request is not authenticated.

      HTTP status code 404

      Resource not found or querying user is not authorized for it.

      Secured by oauth_2_0

      Headers

      • Authorization: optional (string)

        Used to send a valid OAuth 2 access token. Example: "Authorization: Bearer 'access_token'" where 'access_token' must be replaced by a valid OAuth access token. This header is needed only if API authentication is enabled for the service.

      put /asset-types/{assetTypeId}

      Updates item.

      Secured by oauth_2_0 with scopes:
      • asset-type:update

      AM supports OAuth 2.0 for authenticating all API requests.

      URI Parameters

      • assetTypeId: required(string)

        ID

      Body

      Media type: application/json

      Type: object

      Properties

      • type: required(string - pattern: ^[A-Z0-9_]{2,50}+$)

        Type.

      • displayName: required(string)

        Display name.

      • description: optional (string)

        Description.

      • definitionJsonSchema: required(string)

        Asset validation JSON schema.

      • uiJsonSchema: optional (string)

        UI JSON schema.

      Example:

      {
        "type": "BUILDING",
        "displayName": "building",
        "description": "Asset type that represents building",
        "definitionJsonSchema": "{\"$id\":\"https://example.com/employee.schema.json\",\"$schema\":\"https://json-schema.org/draft/2020-12/schema\",\"title\":\"Vehicleassettype\",\"description\":\"Vehicleassettype\",\"type\":\"object\",\"properties\":{\"make\":{\"description\":\"Make\",\"type\":\"string\"},\"model\":{\"description\":\"Model\",\"type\":\"string\"},\"license_plate_number\":{\"description\":\"Licenseplatenumber\",\"type\":\"string\"}}}",
        "uiJsonSchema": "{\"$id\":\"https://example.com/employee.schema.json\",\"$schema\":\"https://json-schema.org/draft/2020-12/schema\",\"title\":\"Vehicleassettype\",\"description\":\"Vehicleassettype\",\"type\":\"object\",\"properties\":{\"make\":{\"description\":\"Make\",\"type\":\"string\"},\"model\":{\"description\":\"Model\",\"type\":\"string\"},\"license_plate_number\":{\"description\":\"Licenseplatenumber\",\"type\":\"string\"}}}"
      }
      

      HTTP status code 204

      Item is successfully updated.

      HTTP status code 400

      Invalid request.

      Body

      Media type: application/json

      Type: object

      Properties

      • message: required(string)

        Detailed error description.

      HTTP status code 401

      Request is not authenticated.

      HTTP status code 404

      Resource not found or querying user is not authorized for it.

      Secured by oauth_2_0

      Headers

      • Authorization: optional (string)

        Used to send a valid OAuth 2 access token. Example: "Authorization: Bearer 'access_token'" where 'access_token' must be replaced by a valid OAuth access token. This header is needed only if API authentication is enabled for the service.

      delete /asset-types/{assetTypeId}

      Deletes.

      Secured by oauth_2_0 with scopes:
      • asset-type:delete

      AM supports OAuth 2.0 for authenticating all API requests.

      URI Parameters

      • assetTypeId: required(string)

        ID

      HTTP status code 204

      Item is successfully deleted.

      HTTP status code 401

      Request is not authenticated.

      HTTP status code 404

      Resource not found or querying user is not authorized for it.

      Secured by oauth_2_0

      Headers

      • Authorization: optional (string)

        Used to send a valid OAuth 2 access token. Example: "Authorization: Bearer 'access_token'" where 'access_token' must be replaced by a valid OAuth access token. This header is needed only if API authentication is enabled for the service.

      Assets

      Operations on assets.

      /assets post get

      post /assets

      Creates a new item.

      Secured by oauth_2_0 with scopes:
      • asset-type:asset:create

      AM supports OAuth 2.0 for authenticating all API requests.

      Body

      Media type: application/json

      Type: object

      Properties

      • assetTypeId: required(string)

        Asset type ID.

      • definition: required(string)

        Definition according to the asset type's JSON schema.

      • uiJsonSchema: optional (string)

        UI JSON schema.

      Example:

      {
        "assetTypeId": "d42e0139-b065-4965-8768-04da733f132c",
        "definition": "{\"city\":\"Kyiv\",\"street\":\"Khreshchatyk St\"}",
        "uiJsonSchema": "{\"$id\":\"https://example.com/employee.schema.json\",\"$schema\":\"https://json-schema.org/draft/2020-12/schema\",\"title\":\"Vehicleassettype\",\"description\":\"Vehicleassettype\",\"type\":\"object\",\"properties\":{\"make\":{\"description\":\"Make\",\"type\":\"string\"},\"model\":{\"description\":\"Model\",\"type\":\"string\"},\"license_plate_number\":{\"description\":\"Licenseplatenumber\",\"type\":\"string\"}}}"
      }
      

      HTTP status code 201

      Item is successfully created.

      Headers

      • Location: required(string)

        URI in format {schema}://{host}/am/api/v1/assets/{assetId}

        Example:

        https://cloud.kaaiot.com/am/api/v1/assets/47e17fc5-060c-4923-b315-d17f6a1bf8d6

      HTTP status code 400

      Invalid request.

      Body

      Media type: application/json

      Type: object

      Properties

      • message: required(string)

        Detailed error description.

      HTTP status code 401

      Request is not authenticated.

      HTTP status code 403

      Principal does not have sufficient permissions to perform this operation.

      Secured by oauth_2_0

      Headers

      • Authorization: optional (string)

        Used to send a valid OAuth 2 access token. Example: "Authorization: Bearer 'access_token'" where 'access_token' must be replaced by a valid OAuth access token. This header is needed only if API authentication is enabled for the service.

      get /assets

      Retrieves list.

      Secured by oauth_2_0 with scopes:
      • asset:read

      AM supports OAuth 2.0 for authenticating all API requests.

      Query Parameters

      • assetTypeId: required(string)

        Asset type ID.

      • definitionPath: optional (string)

        Definition path.

        Example:

        location.city
      • definitionValue: optional (string)

        Definition value. Supports partial match.

        Example:

        Kyiv
      • page: optional (number - default: 0)

        Page number.

        Example:

        0
      • size: optional (number - default: 100)

        Page size.

        Example:

        10
      • sort: optional (one of createdAt, updatedAt - default: createdAt)

        Field to sort by.

        Example:

        updatedAt
      • sortOrder: optional (one of asc, desc - default: desc)

        Sort direction.

        Example:

        asc

      HTTP status code 200

      List is successfully retrieved.

      Body

      Media type: application/json

      Type: object

      Properties

      • totalElements: required(integer)

        Total number of elements available for retrieval.

      • content: required(array of ItemResponse)

        Items: ItemResponse

        • id: required(string)

          ID.

        • assetTypeId: required(string)

          Asset type ID.

        • definition: required(string)

          Definition according to the asset type's JSON schema.

        • uiJsonSchema: optional (string)

          UI JSON schema.

        • tenantId: required(string)

          Tenant ID.

        • createdAt: required(datetime)

          Timestamp in ISO 8601 format (UTC timezone) showing when the record was created.

          Example:

          2023-06-30T12:30:54.540Z
        • updatedAt: required(datetime)

          Timestamp in ISO 8601 format (UTC timezone) showing when the record was last updated.

          Example:

          2023-06-30T12:30:54.540Z

      Example:

      {
        "content": [
          {
            "id": "47e17fc5-060c-4923-b315-d17f6a1bf8d6",
            "assetTypeId": "d42e0139-b065-4965-8768-04da733f132c",
            "definition": "{\"city\":\"Kyiv\",\"street\":\"Khreshchatyk St\"}",
            "uiJsonSchema": "{\"$id\":\"https://example.com/employee.schema.json\",\"$schema\":\"https://json-schema.org/draft/2020-12/schema\",\"title\":\"Vehicleassettype\",\"description\":\"Vehicleassettype\",\"type\":\"object\",\"properties\":{\"make\":{\"description\":\"Make\",\"type\":\"string\"},\"model\":{\"description\":\"Model\",\"type\":\"string\"},\"license_plate_number\":{\"description\":\"Licenseplatenumber\",\"type\":\"string\"}}}",
            "tenantId": "f59a5f45-875d-4dcb-95eb-b017ef9a0638",
            "createdAt": "2023-06-30T12:30:54.540Z",
            "updatedAt": "2023-06-30T12:30:54.541Z"
          }
        ],
        "totalElements": 1
      }
      

      HTTP status code 401

      Request is not authenticated.

      Secured by oauth_2_0

      Headers

      • Authorization: optional (string)

        Used to send a valid OAuth 2 access token. Example: "Authorization: Bearer 'access_token'" where 'access_token' must be replaced by a valid OAuth access token. This header is needed only if API authentication is enabled for the service.

      /assets/{assetId} get put delete

      get /assets/{assetId}

      Retrieves item.

      Secured by oauth_2_0 with scopes:
      • asset:read

      AM supports OAuth 2.0 for authenticating all API requests.

      URI Parameters

      • assetId: required(string)

        ID

      HTTP status code 200

      Item is successfully retrieved.

      Body

      Media type: application/json

      Type: object

      Properties

      • id: required(string)

        ID.

      • assetTypeId: required(string)

        Asset type ID.

      • definition: required(string)

        Definition according to the asset type's JSON schema.

      • uiJsonSchema: optional (string)

        UI JSON schema.

      • tenantId: required(string)

        Tenant ID.

      • createdAt: required(datetime)

        Timestamp in ISO 8601 format (UTC timezone) showing when the record was created.

        Example:

        2023-06-30T12:30:54.540Z
      • updatedAt: required(datetime)

        Timestamp in ISO 8601 format (UTC timezone) showing when the record was last updated.

        Example:

        2023-06-30T12:30:54.540Z

      Example:

      {
        "id": "47e17fc5-060c-4923-b315-d17f6a1bf8d6",
        "assetTypeId": "d42e0139-b065-4965-8768-04da733f132c",
        "definition": "{\"city\":\"Kyiv\",\"street\":\"Khreshchatyk St\"}",
        "uiJsonSchema": "{\"$id\":\"https://example.com/employee.schema.json\",\"$schema\":\"https://json-schema.org/draft/2020-12/schema\",\"title\":\"Vehicleassettype\",\"description\":\"Vehicleassettype\",\"type\":\"object\",\"properties\":{\"make\":{\"description\":\"Make\",\"type\":\"string\"},\"model\":{\"description\":\"Model\",\"type\":\"string\"},\"license_plate_number\":{\"description\":\"Licenseplatenumber\",\"type\":\"string\"}}}",
        "tenantId": "f59a5f45-875d-4dcb-95eb-b017ef9a0638",
        "createdAt": "2023-06-30T12:30:54.540Z",
        "updatedAt": "2023-06-30T12:30:54.541Z"
      }

      HTTP status code 401

      Request is not authenticated.

      HTTP status code 404

      Resource not found or querying user is not authorized for it.

      Secured by oauth_2_0

      Headers

      • Authorization: optional (string)

        Used to send a valid OAuth 2 access token. Example: "Authorization: Bearer 'access_token'" where 'access_token' must be replaced by a valid OAuth access token. This header is needed only if API authentication is enabled for the service.

      put /assets/{assetId}

      Updates item.

      Secured by oauth_2_0 with scopes:
      • asset:update

      AM supports OAuth 2.0 for authenticating all API requests.

      URI Parameters

      • assetId: required(string)

        ID

      Body

      Media type: application/json

      Type: object

      Properties

      • assetTypeId: required(string)

        Asset type ID.

      • definition: required(string)

        Definition according to the asset type's JSON schema.

      • uiJsonSchema: optional (string)

        UI JSON schema.

      Example:

      {
        "assetTypeId": "d42e0139-b065-4965-8768-04da733f132c",
        "definition": "{\"city\":\"Kyiv\",\"street\":\"Khreshchatyk St\"}",
        "uiJsonSchema": "{\"$id\":\"https://example.com/employee.schema.json\",\"$schema\":\"https://json-schema.org/draft/2020-12/schema\",\"title\":\"Vehicleassettype\",\"description\":\"Vehicleassettype\",\"type\":\"object\",\"properties\":{\"make\":{\"description\":\"Make\",\"type\":\"string\"},\"model\":{\"description\":\"Model\",\"type\":\"string\"},\"license_plate_number\":{\"description\":\"Licenseplatenumber\",\"type\":\"string\"}}}"
      }
      

      HTTP status code 204

      Item is successfully updated.

      HTTP status code 400

      Invalid request.

      Body

      Media type: application/json

      Type: object

      Properties

      • message: required(string)

        Detailed error description.

      HTTP status code 401

      Request is not authenticated.

      HTTP status code 404

      Resource not found or querying user is not authorized for it.

      Secured by oauth_2_0

      Headers

      • Authorization: optional (string)

        Used to send a valid OAuth 2 access token. Example: "Authorization: Bearer 'access_token'" where 'access_token' must be replaced by a valid OAuth access token. This header is needed only if API authentication is enabled for the service.

      delete /assets/{assetId}

      Deletes.

      Secured by oauth_2_0 with scopes:
      • asset:delete

      AM supports OAuth 2.0 for authenticating all API requests.

      URI Parameters

      • assetId: required(string)

        ID

      HTTP status code 204

      Item is successfully deleted.

      HTTP status code 401

      Request is not authenticated.

      HTTP status code 404

      Resource not found or querying user is not authorized for it.

      Secured by oauth_2_0

      Headers

      • Authorization: optional (string)

        Used to send a valid OAuth 2 access token. Example: "Authorization: Bearer 'access_token'" where 'access_token' must be replaced by a valid OAuth access token. This header is needed only if API authentication is enabled for the service.

      Relations

      Operations on relations.

      /relations get

      get /relations

      Retrieves relations.

      Secured by oauth_2_0 with scopes:
      • asset:read
      • endpoint:read

      AM supports OAuth 2.0 for authenticating all API requests.

      Query Parameters

      • entityType: required(one of ENDPOINT, ASSET)

        Entity type.

      • entityId: required(string)

        Entity ID.

      • relationType: optional (one of CONTAINS, IS_CONTAINED_BY, SUPPORTS, IS_SUPPORTED_BY, MANAGES, IS_MANAGED_BY, CONTROLS, IS_CONTROLLED_BY)

        Relation type.

      HTTP status code 200

      Relations are successfully retrieved.

      Body

      Media type: application/json

      Type: array of ItemResponse

      Items: ItemResponse

      • fromEntityId: required(string)

        From entity ID.

      • fromEntityType: required(one of ENDPOINT, ASSET)

        From entity type.

      • toEntityId: required(string)

        To entity ID.

      • toEntityType: required(one of ENDPOINT, ASSET)

        To entity type.

      • relationType: required(one of CONTAINS, SUPPORTS, MANAGES, CONTROLS)

        Relation type.

      • createdAt: required(datetime)

        Timestamp in ISO 8601 format (UTC timezone) showing when the record was created.

        Example:

        2023-06-30T12:30:54.540Z
      • updatedAt: required(datetime)

        Timestamp in ISO 8601 format (UTC timezone) showing when the record was last updated.

        Example:

        2023-06-30T12:30:54.540Z

      Example:

      [
        {
          "from": "68f3c94d-c713-471a-ba71-51cc2d0f285f",
          "fromEntityType": "ASSET",
          "to": "716036b6-090f-4155-8ee9-6063b4a98a9c",
          "toEntityType": "ENDPOINT",
          "relationType": "CONTAINS",
          "createdAt": "2024-02-02T01:23:29.841Z",
          "updatedAt": "2024-02-02T01:23:29.841Z"
        }
      ]
      

      HTTP status code 401

      Request is not authenticated.

      HTTP status code 404

      Resource not found or querying user is not authorized for it.

      Secured by oauth_2_0

      Headers

      • Authorization: optional (string)

        Used to send a valid OAuth 2 access token. Example: "Authorization: Bearer 'access_token'" where 'access_token' must be replaced by a valid OAuth access token. This header is needed only if API authentication is enabled for the service.

      /relations/link post

      post /relations/link

      Creates relation

      Secured by oauth_2_0 with scopes:
      • endpoint:update
      • asset:update

      AM supports OAuth 2.0 for authenticating all API requests.

      Body

      Media type: application/json

      Type: object

      Properties

      • fromEntityId: required(string)

        From entity ID.

      • fromEntityType: required(one of ENDPOINT, ASSET)

        From entity type.

      • toEntityId: required(string)

        To entity ID.

      • toEntityType: required(one of ENDPOINT, ASSET)

        To entity type.

      • relationType: required(one of CONTAINS, SUPPORTS, MANAGES, CONTROLS)

        Relation type.

      Example:

      {
        "fromEntityId": "68f3c94d-c713-471a-ba71-51cc2d0f285f",
        "fromEntityType": "ASSET",
        "toEntityId": "716036b6-090f-4155-8ee9-6063b4a98a9c",
        "toEntityType": "ENDPOINT",
        "relationType": "CONTAINS"
      }
      

      HTTP status code 200

      Relation is successfully created.

      HTTP status code 400

      Invalid request.

      Body

      Media type: application/json

      Type: object

      Properties

      • message: required(string)

        Detailed error description.

      HTTP status code 401

      Request is not authenticated.

      HTTP status code 403

      Principal does not have sufficient permissions to perform this operation.

      Secured by oauth_2_0

      Headers

      • Authorization: optional (string)

        Used to send a valid OAuth 2 access token. Example: "Authorization: Bearer 'access_token'" where 'access_token' must be replaced by a valid OAuth access token. This header is needed only if API authentication is enabled for the service.

      /relations/unlink post

      post /relations/unlink

      Deletes relation

      Secured by oauth_2_0 with scopes:
      • endpoint:update
      • asset:update

      AM supports OAuth 2.0 for authenticating all API requests.

      Body

      Media type: application/json

      Type: object

      Properties

      • fromEntityId: required(string)

        From entity ID.

      • fromEntityType: required(one of ENDPOINT, ASSET)

        From entity type.

      • toEntityId: required(string)

        To entity ID.

      • toEntityType: required(one of ENDPOINT, ASSET)

        To entity type.

      • relationType: required(one of CONTAINS, SUPPORTS, MANAGES, CONTROLS)

        Relation type.

      Example:

      {
        "fromEntityId": "68f3c94d-c713-471a-ba71-51cc2d0f285f",
        "fromEntityType": "ASSET",
        "toEntityId": "716036b6-090f-4155-8ee9-6063b4a98a9c",
        "toEntityType": "ENDPOINT",
        "relationType": "CONTAINS"
      }
      

      HTTP status code 200

      Relation is successfully deleted.

      HTTP status code 400

      Invalid request.

      Body

      Media type: application/json

      Type: object

      Properties

      • message: required(string)

        Detailed error description.

      HTTP status code 401

      Request is not authenticated.

      HTTP status code 403

      Principal does not have sufficient permissions to perform this operation.

      Secured by oauth_2_0

      Headers

      • Authorization: optional (string)

        Used to send a valid OAuth 2 access token. Example: "Authorization: Bearer 'access_token'" where 'access_token' must be replaced by a valid OAuth access token. This header is needed only if API authentication is enabled for the service.

      Relation sessions

      Operations on relation sessions.

      /relation-sessions get

      get /relation-sessions

      Retrieves relation sessions.

      Secured by oauth_2_0 with scopes:
      • asset:read
      • endpoint:read

      AM supports OAuth 2.0 for authenticating all API requests.

      Query Parameters

      • page: optional (number - default: 0)

        Page number.

        Example:

        0
      • size: optional (number - default: 100)

        Page size.

        Example:

        10
      • entityType: required(one of ENDPOINT, ASSET)

        Entity type.

      • entityId: required(string)

        Entity ID.

      • relationType: optional (one of CONTAINS, IS_CONTAINED_BY, SUPPORTS, IS_SUPPORTED_BY, MANAGES, IS_MANAGED_BY, CONTROLS, IS_CONTROLLED_BY)

        Relation type.

      HTTP status code 200

      Relation sessions are successfully retrieved.

      Body

      Media type: application/json

      Type: array of ItemResponse

      Items: ItemResponse

      • fromEntityId: required(string)

        From entity ID.

      • fromEntityType: required(one of ENDPOINT, ASSET)

        From entity type.

      • toEntityId: required(string)

        To entity ID.

      • toEntityType: required(one of ENDPOINT, ASSET)

        To entity type.

      • relationType: required(one of CONTAINS, SUPPORTS, MANAGES, CONTROLS)

        Relation type.

      • createdAt: required(datetime)

        Timestamp in ISO 8601 format (UTC timezone) showing when the record was created.

        Example:

        2023-06-30T12:30:54.540Z
      • updatedAt: required(datetime)

        Timestamp in ISO 8601 format (UTC timezone) showing when the record was last updated.

        Example:

        2023-06-30T12:30:54.540Z

      Example:

      [
        {
          "fromEntityId": "68f3c94d-c713-471a-ba71-51cc2d0f285f",
          "fromEntityType": "ASSET",
          "toEntityId": "716036b6-090f-4155-8ee9-6063b4a98a9c",
          "toEntityType": "ENDPOINT",
          "relationType": "CONTAINS",
          "linkedAt": "2024-02-01T01:23:29.841Z",
          "unlinkedAt": "2024-02-02T01:23:29.903Z",
          "createdAt": "2024-02-02T01:23:29.841Z",
          "updatedAt": "2024-02-02T01:23:29.903Z"
        }
      ]
      

      HTTP status code 401

      Request is not authenticated.

      HTTP status code 404

      Resource not found or querying user is not authorized for it.

      Secured by oauth_2_0

      Headers

      • Authorization: optional (string)

        Used to send a valid OAuth 2 access token. Example: "Authorization: Bearer 'access_token'" where 'access_token' must be replaced by a valid OAuth access token. This header is needed only if API authentication is enabled for the service.