GET
/
api
/
v2
/
service-token
curl --request GET \
  --url https://app.infisical.com/api/v2/service-token \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "scopes": "<any>",
  "permissions": [
    "<string>"
  ],
  "lastUsed": "2023-11-07T05:31:56Z",
  "expiresAt": "2023-11-07T05:31:56Z",
  "secretHash": "<string>",
  "encryptedKey": "<string>",
  "iv": "<string>",
  "tag": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "createdBy": "<string>",
  "projectId": "<string>",
  "workspace": "<string>",
  "user": {
    "authMethods": [
      "<string>"
    ],
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "devices": "<any>",
    "email": "<string>",
    "firstName": "<string>",
    "lastName": "<string>",
    "mfaMethods": [
      "<string>"
    ],
    "__v": 123,
    "_id": "<string>"
  },
  "_id": "<string>",
  "__v": 123
}

This endpoint will be deprecated in the near future with the removal of service tokens in Q1/Q2 2024.

We recommend switching to using identities if your client supports it.

Authorizations

Authorization
string
headerrequired

An access token in Infisical

Response

200 - application/json
id
string
required
name
string
required
scopes
any
permissions
string[]
required
lastUsed
string | null
expiresAt
string | null
secretHash
string
required
encryptedKey
string | null
iv
string | null
tag
string | null
createdAt
string
required
updatedAt
string
required
createdBy
string
required
projectId
string
required
workspace
string
required
user
object
required
_id
string
required
__v
number
default: 0