Malwation ThreatZone Documentation
  • Release Notes
    • v2.7.2 - latest
    • v2.7.1
    • v2.7.0
    • v2.6.1
    • v2.6.0
    • v2.5.2
    • v2.5.1
    • v2.5.0
    • v2.4.0
    • v2.3.0
    • v2.2.0
    • v2.1.0
    • v2.0.0
    • v1.4.0
    • v1.3.0
    • v1.2.0
    • v1.1.0
    • v1.0.0
  • API Docs
    • Scan
    • Get
    • Me
    • Download
    • Constants
    • Models
  • ThreatZone Onpremise Usage Guide
Powered by GitBook
On this page

Was this helpful?

Export as PDF
  1. API Docs

Me

PreviousGetNextDownload

Was this helpful?

Get account details, limits, and plan information

get

Get account details, limits, and plan information in a detailed way of used workspace

Authorizations
Responses
200
User information retrieved successfully
application/json
401
Unauthorized
get
GET /public-api/me HTTP/1.1
Host: 
Authorization: Bearer 
Accept: */*
{
  "userInfo": {
    "email": "text",
    "fullName": "text",
    "workspace": {
      "name": "text",
      "alias": "text",
      "private": true,
      "type": "text"
    },
    "limitsCount": {
      "apiRequestCount": 1,
      "dailySubmissionCount": 1,
      "concurrentSubmissionCount": 1
    }
  },
  "plan": {
    "planName": "text",
    "startTime": "text",
    "endTime": "text",
    "subsTime": "text",
    "fileLimits": {
      "extensions": {},
      "fileSize": "text"
    },
    "submissionLimits": {
      "apiLimit": 1,
      "dailyLimit": 1,
      "concurrentLimit": 1
    }
  },
  "modules": [
    {
      "moduleId": "text",
      "moduleName": "text",
      "startTime": "text",
      "endTime": "text"
    }
  ]
}