Skip to content

Latest commit

 

History

History
61 lines (42 loc) · 1.02 KB

File metadata and controls

61 lines (42 loc) · 1.02 KB
sidebar_position 37

Get license pool by ID

Description

Gets a license pool's details using the group's id.

URL

http://{Admin API IP}:{port#}/api/v1/licensepools/{id}

Parameter Description/Comments
Id (string) License pool's id. Can be retrieved via Get all license pools.

HTTP method

GET

Request

Headers

Example header format:

Authorization: Basic <authorization token returned from the login method>

Content-Type: application/json

Response

Response example
{
    "Name": "SF license pool 2",
    "Description": "License pool for San Francisco domain",
    "MaxConcurrentReservation": 15,
    "Domains": [
        "8cd12c8d-6d40-4dfd-89da-a8d8dde00575"
    ],
    "CreateDate": "2023-07-18T06:59:07",
    "Id": "a4ba81df-ead7-487b-b684-b04300a48e69"
}
Response code
200 OK