Viewing Details of an Issuer
Use the GET /v1/cckm/GoogleWorkspaceCSE/issuers/{id}
API to view the details of an issuer.
Syntax
curl -k '<IP>/api/v1/cckm/GoogleWorkspaceCSE/issuers/{id}' -H 'Authorization: Bearer AUTHTOKEN' --compressed
Request Parameters
Parameter | Type | Description |
---|---|---|
id | string | ID of the issuer. To find out the ID of an issuer, refer to Viewing Issuers. |
AUTHTOKEN | string | Authorization token. |
Example Request
curl -k 'https://127.0.0.1/api/v1/cckm/GoogleWorkspaceCSE/issuers/1fa6fd5a-01be-4b24-905f-21cba61c28a2' -H 'Authorization: Bearer AUTHTOKEN' --compressed
Example Response
{
"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 the specified issuer with ID "1fa6fd5a-01be-4b24-905f-21cba61c28a2"
.
Response Codes
Response Code | Description |
---|---|
2xx | Success |
4xx | Client errors |
Refer to HTTP status codes for details.