Acontext
UserIdentifierResources

Get user resources

GET
/user/{identifier}/resources

Get the resource counts (Sessions, Disks, Skills) associated with a user

Authorization

BearerAuth
Authorization<token>

Project Bearer token (e.g., "Bearer sk-ac-xxxx")

In: header

Path Parameters

identifier*string

User identifier string

Response Body

application/json

curl -X GET "https://loading/api/v1/user/string/resources"
{
  "code": 0,
  "error": "string",
  "msg": "string",
  "data": {
    "counts": {
      "disks_count": 0,
      "sessions_count": 0,
      "skills_count": 0
    }
  }
}