API 토큰

API 토큰에 대한 REST API 작업

개요

이러한 API 작업을 사용하여 상호작용합니다 API 토큰 in Panther. An API token can rotate itself using the POST api-tokens/self/rotate endpoint.

API를 호출하려면, 다음을 참조하세요 Panther REST API 사용 방법 지침—포함하여 이 문서 페이지에서 직접 호출하는 방법에 대한 지침.

필수 권한

  • 에 대해 GET 작업의 경우, API 토큰에는 API 토큰 정보 읽기 권한이 있어야 합니다.

  • 에 대해 POSTDELETE 작업의 경우, API 토큰에는 API 토큰 관리 권한이 있어야 합니다.

작업

Create an api token

post
Authorizations
X-API-KeystringRequired
Body
allowedCIDRBlocksstring[]Optional

The set of CIDR blocks that are allowed to use this API token. If empty, all CIDR blocks are allowed

namestringRequired

The name of the token

Responses
chevron-right
200

OK response.

application/json
post
/api-tokens

Get an api token

get
Authorizations
X-API-KeystringRequired
Path parameters
idstringRequired

ID of the api token. Note: if self is provided, the current api token will be returned

Responses
chevron-right
200

OK response.

application/json
get
/api-tokens/{id}

Update an api token

post
Authorizations
X-API-KeystringRequired
Path parameters
idstringRequired

ID of the api token. Note: if self is provided, the current api token will be updated

Body
allowedCIDRBlocksstring[]Optional

The set of CIDR blocks that are allowed to use this API token. If empty, all CIDR blocks are allowed

namestringRequired

The name of the token

Responses
chevron-right
200

OK response.

application/json
post
/api-tokens/{id}

delete api token

delete
Authorizations
X-API-KeystringRequired
Path parameters
idstringRequired

ID of the api token to delete. Note: if self is provided, the current api token will be deleted

Responses
delete
/api-tokens/{id}

No content

List api tokens

get
Authorizations
X-API-KeystringRequired
Responses
chevron-right
200

OK response.

application/json
get
/api-tokens
200

OK response.

Rotate an api token. If self is provided the current token will be rotated

post
Authorizations
X-API-KeystringRequired
Path parameters
idstringRequired

ID of the api token to rotate. Note: if self is provided, the current api token will be rotated

Responses
chevron-right
200

OK response.

application/json
post
/api-tokens/{id}/rotate

마지막 업데이트

도움이 되었나요?