Creating a Salesforce Issuer
Use the post /v1/cckm/sfdc/issuers
API to create a valid JWT issuer (third-party IDP). When creating the issuer, you must specify a unique name along with one of the following combinations.
issuer and jwks_uri
openid_config_url: will be used to auto-fetch the issuer and jwks_uri
Syntax
Request Parameters
Parameter | Type | Description |
---|---|---|
AUTHTOKEN | string | Authorization token. |
name | string | Name of the issuer. It should be unique. |
issuer (optional) | string | URL for the issuer. |
jwks_uri (optional) | string | URI of JWKS, for example, https://abc.auth0.com/.well-known/jwks.json. |
openid_config_url (optional) | string | OpenID configuration URL for the issuer. |
Example Request
Example Response
Response Codes
Response Code | Description |
---|---|
2xx | Success |
4xx | Client errors |
5xx | Server errors |
Refer to HTTP status codes for details.