Create access profile
Headers
Bearer authentication of the form Bearer <token>
, where token is your auth token.
Request
The authentication method used to validate requests. Available types are: token
, jwt
, oauth2
, and oidc
.
The JWT signing method. If the auth_type
is jwt, this is required. Available methods are hmac and rsa for HMAC and RSA respectively.
The discovery URL of the identity provider or the OIDC service. Provide only one of this or oidc_jwks_uri, not both. Only applicable if auth_type
is jwt
or oidc
.
JWKS URL of identity provider or OIDC service. Provide only one of this or oidc_issuer, not both. Only applicable if auth_type
is jwt
or oidc
.
Provide the JWT claim key to use a custom claim to identify this access profile. Only applicable if auth_type
is jwt
or oidc
.
Provide a list of claims to enforce. Only applicable if auth_type
is jwt
or oidc
.
Provide a list of issuers (represented by the iss
value in JWT claims) to allow. If the iss
claim is enforced in required_claims
, leave this field blank to accept any iss
value. This parameter is only applicable when auth_type
is set to jwt
or oidc
.
Response
Authentication method used in the access profile. Possible values are token
, jwt
, oauth2
, and oidc
.
The JWT signing method. Available methods are hmac and rsa for HMAC and RSA respectively. Only applicable if the auth_type
is jwt
.
Discovery URL of identity provider or OIDC service. Provide only one of this or oidc_jwks_uri, not both. Only applicable if auth_type is jwt or oidc.
JWKS URL of identity provider or OIDC service. Provide only one of this or oidc_issuer, not both. Only applicable if auth_type is jwt or oidc.
If you wish to use a custom claim to identify this access profile, provide the JWT claim key here. Only applicable if auth_type
is jwt
or oidc
.
Provide a list of claims that you wish to enforce. Only applicable if auth_type
is jwt
or oidc
.
Provide a list of issuers (represented by the iss
value in JWT claims) that you wish to allow. If the iss
claim is enforced in required_claims
, leave this field blank to accept any iss
value. This parameter is only applicable when auth_type
is set to jwt
or oidc
.