Viewing Salesforce Issuers
Use the get /v1/cckm/sfdc/issuers
API to view the list of the Salesforce issuers. The results can be filtered using the query parameters.
Syntax
curl -k '<IP>/api/v1/cckm/sfdc/issuers?skip=0&limit=10&sort=updatedAt' -H 'Authorization: Bearer AUTHTOKEN' --compressed
Request Parameters
Parameter | Type | Description |
---|---|---|
AUTHTOKEN | string | Authorization token. |
ID | string | ID of the Salesforce Issuer on the CipherTrust Manager. |
name | string | Name of the Salesforce Issuer. |
issuer | string | URL for 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. |
sort | string | Comma-delimited list of properties to sort the results. |
Example Request
curl -k 'https://127.0.0.1/api/v1/cckm/sfdc/issuers?skip=0&limit=10&sort=updatedAt' -H 'Authorization: Bearer eyJhbGciOiJFUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiIxYjQ0YmEyNi03YjJhLTQ1NDItOWI1NS0zMjU4NDJkZTJjMDUiLCJzdWIiOiJsb2NhbHxjMGIzNmIxZi1kODdjLTQ5MTctYTUxNy03MjY0MmNkZWM1OTIiLCJpc3MiOiJreWxvIiwiYWNjIjoia3lsbyIsInByZWZlcnJlZF91c2VybmFtZSI6ImFkbWluIiwiY3VzdCI6eyJjbGllbnRfaWQiOiI4MzdjODQwZC03NWRkLTRiNGYtYTMxOC03OWNiMTZjYTI0OGQiLCJjbGllbnRfbmFtZSI6ImFwaS1wbGF5Z3JvdW5kIiwiY2xpZW50X3R5cGUiOiJwdWJsaWMiLCJkb21haW5faWQiOiIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiLCJncm91cHMiOlsiYWRtaW4iXSwic2lkIjoiODM3Yzg0MGQtNzVkZC00YjRmLWEzMTgtNzljYjE2Y2EyNDhkIiwiem9uZV9pZCI6IjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCJ9LCJqd3RpZCI6IjY4ODkyYjJiLWI4YjItNGIwNC1hYThmLTc5ZmRiYjQyMWZhMCIsImlhdCI6MTcyMDUyOTA5MywiZXhwIjoxNzIwNTI5MzkzfQ.ac2RA75uv3uQcpEzZnEl5Dazh7gpBgML_CFt4AgJOPMoSKXw6B0iVrtDBkN5lUkNuIKd-uafADgGQ9km2C2AVg' -H 'accept: application/json' --compressed
Example Response
{
"skip": 0,
"limit": 10,
"total": 1,
"resources": [
{
"id": "632c68fa-e14d-4f69-be41-a7ca84e1f750",
"uri": "kylo:kylo:cckm:sfdc-issuer:issuertwo2-632c68fa-e14d-4f69-be41-a7ca84e1f750",
"account": "kylo:kylo:admin:accounts:kylo",
"createdAt": "2024-06-06T10:44:04.733321Z",
"updatedAt": "2024-06-06T10:44:04.733321Z",
"name": "issuerTwo2",
"openid_config_url": "https://www.example.com/openid-configuration",
"issuer": "https://issuer.com",
"jwks_uri": "https://www.example.com/jwks.json"
}
]
}
Response Codes
Response Code | Description |
---|---|
2xx | Success |
4xx | Client errors |
5xx | Server errors |
Refer to HTTP status codes for details.