API ReferenceManagementManagement Keys
GET
/v1/mgmt/managementkey

Authorization

Descope Project ID and Management Key
AuthorizationBearer <token>

Project ID:Management Key as bearer token.

In: header

Get a management key using another management key.

curl -X GET "https://api.descope.com/v1/mgmt/managementkey"
{  "key": {    "id": "string",    "name": "string",    "description": "string",    "status": "string",    "createdTime": 0,    "expireTime": 0,    "permittedIps": [      "string"    ],    "reBac": {      "companyRoles": [        "string"      ],      "projectRoles": [        {          "projectIds": [            "string"          ],          "roles": [            "string"          ]        }      ],      "tagRoles": [        {          "tags": [            "string"          ],          "roles": [            "string"          ]        }      ]    },    "version": 0,    "authzVersion": 0  }}
export interface Response {key?: {id?: stringname?: stringdescription?: stringstatus?: stringcreatedTime?: numberexpireTime?: numberpermittedIps?: string[]reBac?: {companyRoles?: string[]projectRoles?: ManagementKeyProjectRole[]tagRoles?: ManagementKeyTagRole[]}version?: numberauthzVersion?: number}}export interface ManagementKeyProjectRole {projectIds?: string[]roles?: string[]}/** * Management key */export interface ManagementKeyTagRole {tags?: string[]roles?: string[]}
Was this helpful?