# Licenses

These are a collection of endpoints that allow you to query your existing Bird licenses attached to your Console.

# Detailed Bird License Information

GET /api/v1/license/detailed/info

Retrieve a list of Cloud / Virtual license details including limits and URLs to images.

Required Parameters

auth_token string
A valid auth token

Response

A JSON structure containing detailed Canary license information.

Example

    Response
    {
      "azurecanary_details": {},
      "canaryvm_details": {
        "canaryvm_count": 0,
        "canaryvm_license_count": 5,
        "canaryvm_remaining_licenses": 5,
        "canaryvm_version_details": [
          {
            "commit": "8a06e02",
            "link": "<unique_link>",
            "ovalink": "<unique_link>",
            "password": "<password>",
            "seedlink": "<unique_link>",
            "version": "2.2.1"
          }
        ]
      },
      "cloudcanary_details": {
        "cloudcanary_count": 0,
        "cloudcanary_license_count": 5,
        "cloudcanary_remaining_licenses": 5
      },
      "containercanary_details": {
        "containercanary_count": 1, 
        "containercanary_image_details": {
          "docker": [
            {
              "arch": "amd64", 
              "namespace": "<Docker Hub namespace>",
              "pull_credentials": {
                "token": "<Docker Hub token>", 
                "username": "<Docker Hub username>"
              }, 
              "registry": "https://index.docker.io/v1/", 
              "repo": "<Docker Hub repo>", 
              "sha256": "<Container digest>", 
              "tags": [
                "<Container version>", 
                "latest"
              ], 
              "version": "<Container version>"
            }
          ]
        }
      },
      "gcpcanary_details": {},
      "hypervcanary_details": {},
      "result": "success"
    }
    
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49