Get Nsp Configuration

Get Nsp Configuration
Get Public Access URL (NSP Section)

Retrieves the NSP configuration, which defines the public access URL and cloud type for HCX deployments.

Returns:

  • baseProxyUrl: Public URL for accessing HCX through cloud provider's proxy/gateway
  • cloudType: Type of cloud platform (e.g., "VC", "VCD")
  • isVcdGatewaysEnabled: Whether VCD gateways are enabled
  • isDefault: Whether this is the default NSP configuration
  • extensibilityExchange: Extensibility exchange configuration
  • UUID: Unique identifier for the NSP configuration
Request
URI
GET
https://{server}:9443/api/admin/global/config/nsp
COPY
Authentication
This operation uses the following authentication methods.
Responses
200

NSP configuration retrieved successfully

Returns NspGetResponse200 of type(s) application/json
{
    "data": {
        "items": [
            {
                "config": {
                    "baseProxyUrl": "string",
                    "extensibilityExchange": "string",
                    "cloudType": "string",
                    "isVcdGatewaysEnabled": false,
                    "isDefault": false,
                    "UUID": "string"
                },
                "section": "string"
            }
        ]
    }
}
object
data
Required

data


500

Internal server error while retrieving NSP configuration

Returns ErrorResponse of type(s) application/json
{
    "isSuccess": false,
    "message": "Request schema validation failed",
    "httpStatusCode": 400
}
boolean
isSuccess
Required

Indicates if the operation was successful

string
message
Required

Human-readable error message

integer
httpStatusCode
Required

HTTP status code


Code Samples
COPY
                    curl -H 'Authorization: <value>' https://{api_host}/api/admin/global/config/nsp