Viewing Issuers
Use the GET /v1/cckm/GoogleWorkspaceCSE/issuers
API to view the list of issuers.
Syntax
curl -k '<IP>/api/v1/cckm/GoogleWorkspaceCSE/issuers?skip=0&limit=10' -H 'Authorization: Bearer AUTHTOKEN' --compressed
Request Parameters
Parameter | Type | Description |
---|---|---|
AUTHTOKEN | string | Authorization token. |
Request Query Parameters
Parameter | Type | Description |
---|---|---|
id | string | ID of the issuer to search for a particular issuer. |
name | string | Name of the issuer. |
skip | integer | Number of records to skip. For example, if "skip":5 is specified, the first five records will not be displayed in the output. |
limit | integer | Numbers 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/issuers?skip=0&limit=10' -H 'Authorization: Bearer AUTHTOKEN' --compressed
Example Response
{
"skip": 0,
"limit": 10,
"total": 1,
"resources": [
{
"id": "1fa6fd5a-01be-4b24-905f-21cba61c28a2",
"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:19:39.991893Z",
"name": "demo_iss",
"updatedAt": "2020-10-15T13:19:39.990471Z",
"iss": "https://abc.auth0.com/",
"openidConfigurationURL": "https://abc.auth0.com/.well-known/openid-configuration",
"jwksURL": "https://abc.auth0.com/.well-known/jwks.json",
"meta": null
}
]
}
The output shows the details of existing issuers. Each issuer has a unique ID, for example, "1fa6fd5a-01be-4b24-905f-21cba61c28a2"
. This ID is required when viewing or deleting an issuer.
Response Codes
Response Code | Description |
---|---|
2xx | Success |
4xx | Client errors |
Refer to HTTP status codes for details.