Scim Tokens (org/v2)

Create a Scim Token

General Availability

Make a request to create a scim token.

post/org/v2/scim-tokens

Request body

expire_duration_minsinteger

The duration in minutes after which the token expires. Defaults to 6 months (259200 minutes) if not specified. Minimum: 1 month (43200 minutes). Maximum: 2 years (1051200 minutes).

Example request

{
  "expire_duration_mins": 259200
}

Response

A Scim Token was created.

api_version'org/v2'

APIVersion defines the schema version of this representation of a resource.

kind'ScimToken'

Kind defines the object this REST resource represents.

idstring

ID is the "natural identifier" for an object within its scope/namespace; it is normally unique across time but not space. That is, you can assume that the ID will not be reclaimed and reused after an object is deleted ("time"); however, it may collide with IDs for other object kinds or objects of the same kind within a different scope/namespace ("space").

connection_namestring

The SSO connection name associated with this token.

tokenstring

The SCIM bearer token. Only provided in create responses, not in list.

created_atstring date-time

The date and time when the token was created.

expires_atstring date-time

The date and time when the token expires.

Example response

{
  "id": "dlz-f3a90de",
  "metadata": {
    "self": "https://api.confluent.cloud/org/v2/scim-tokens/st-12345",
    "resource_name": "crn://confluent.cloud/organization=9bb441c4-edef-46ac-8a41-c49e44a3fd9a/scim-token=st-12345",
    "created_at": "2006-01-02T15:04:05-07:00",
    "updated_at": "2006-01-02T15:04:05-07:00",
    "deleted_at": "2006-01-02T15:04:05-07:00"
  },
  "connection_name": "test-connection",
  "token": "cflt-scim_eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
  "created_at": "2026-04-16T10:00:00Z",
  "expires_at": "2026-10-16T10:00:00Z"
}

Changes

Changed in 1 of the 4 revisions of this API.1