GET
/
{workspaceId}
/
projects
/
{projectName}
/
auth-sessions
Get Auth Sessions
curl --request GET \
  --url https://app.intuned.io/api/v1/workspace/{workspaceId}/projects/{projectName}/auth-sessions \
  --header 'x-api-key: <api-key>'
[
  {
    "id": "auth-session-123",
    "type": "CREDENTIALS",
    "status": "READY"
  },
  {
    "id": "auth-session-456",
    "type": "RUNTIME",
    "status": "PENDING"
  }
]

Authorizations

x-api-key
string
header
required

API Key used to authenticate your requests. How to create one.

Path Parameters

workspaceId
string<uuid>
required

Your workspace ID. How to find it?

projectName
string
required

Your project name. It is the name you provide when creating a project.

Response

200 - application/json

List of authentication sessions

The response is of type object[].