POST
/v1/mgmt/accesskey/activate/batch

Activate existing access keys in batch, using a valid management key.

This API endpoint allows administrators to activate existing access keys in batch.

Next Steps

Once you have reactivated the access key, you can utilize it to configure external items such as SCIM, or use it to exchange for a JWT.

See also

Endpoint Authentication

Use authorization bearer header with the following format:

Authorization: Bearer \<ProjectId:ManagementKey\>

Try it

/v1/mgmt/accesskey/activate/batch

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

< Project ID >:< Management Key > as bearer

In: header

Request Body

idsarray<string>

Status codeDescription
200OK
curl -X POST "https://api.descope.com/v1/mgmt/accesskey/activate/batch" \
  -d '{
  "ids": [
    "string"
  ]
}'
Was this helpful?