Your suggested change has been received. Thank you.

close

Suggest A Change

https://thales.na.market.dpondemand.io/docs/dpod/services/kmo….

back

Related APIs

Viewing KACLS Endpoints

search

Please Note:

Viewing KACLS Endpoints

Use the GET /v1/cckm/GoogleWorkspaceCSE/endpoints API to view the list of KACLS endpoints.

Syntax

curl -k '<IP>/api/v1/cckm/GoogleWorkspaceCSE/endpoints?skip=0&limit=10' -H 'Authorization: Bearer AUTHTOKEN' --compressed

Request Parameters

ParameterTypeDescription
AUTHTOKENstringAuthorization token.

Request Query Parameters

ParameterTypeDescription
idstringID of the endpoint to search for a particular endpoint.
namestringName of the endpoint.
skipintegerNumber of records to skip. For example, if "skip":5 is specified, the first five records will not be displayed in the output.
limitintegerNumbers of records to display. For example, if "limit":10 is specified, then the next 10 records (after skipping the number of records specified in the skip parameter ) will be displayed in the output.

Example Request

curl -k 'https://127.0.0.1/api/v1/cckm/GoogleWorkspaceCSE/endpoints?skip=0&limit=10' -H 'Authorization: Bearer AUTHTOKEN' --compressed

Example Response

{
    "skip": 0,
    "limit": 10,
    "total": 1,
    "resources": [
        {
            "id": "c1583936-7d03-4e2d-a0ae-3a1ae2d2e200",
            "uri": "kylo:kylo:cckm:kacls-endpoint:demo",
            "account": "kylo:kylo:admin:accounts:kylo",
            "application": "ncryptify:gemalto:admin:apps:kylo",
            "devAccount": "ncryptify:gemalto:admin:accounts:gemalto",
            "createdAt": "2020-10-15T13:30:57.560148Z",
            "name": "endpoint_demo",
            "endpoint_url_hostname": "demo.thalesgwsintegration.net",
            "updatedAt": "2020-10-15T13:30:57.560148Z",
            "cors": null,
            "authorizationAud": null,
            "authenticationAud": [
                "122334a33qr31038dekfhfl"
            ],
            "endpoint_url": "https://demo.thalesgwsintegration.net/api/v1/cckm/GoogleWorkspaceCSE/endpoints/c1583936-7d03-4e2d-a0ae-3a1ae2d2e200",
            "kekName": "ks- cc84e97b53e5457cbd6b664174a0f1df57570a3aa4044ee887077203940f1221",
            "kekID": " cc84e97b53e5457cbd6b664174a0f1df57570a3aa4044ee887073303940f10c1",
            "meta": null
        },
    ]    
}

The output shows the details of existing endpoints. Each endpoint has a unique ID, for example, "c1583936-7d03-4e2d-a0ae-3a1ae2d2e200". The endpoint ID is required when viewing, modifying, wrapping, unwrapping, and deleting the KACLS endpoint. The ID is also required when rotating encryption key of an endpoint, and viewing and updating the KACLS endpoint perimeter.

Response Codes

Response CodeDescription
2xxSuccess
4xxClient errors

Refer to HTTP status codes for details.