⚙️
Cloudnode Documentation
API v4
API v4
  • Cloudnode v4 API Docs
  • Quick Start
  • Token Permission Nodes
  • Reference
    • API Reference
      • Account
      • Authentication
Powered by GitBook
On this page
  • Endpoints
  • Check request authentication
  1. Reference
  2. API Reference

Authentication

PreviousAccount

Last updated 2 years ago

Endpoints

Check request authentication

GET https://api.cloudnode.pro/v4/auth/check

Check whether your request is properly authenticated.

Requires authentication. See .

{
    "authenticated": true, // {boolean} Always true at this stage
    "token": { // an example token object
        "created": "2022-07-02T09:01:59.000Z",
        "expires": "2025-09-01T18:48:39.000Z",
        "id": "token_ACwk9qk0e6652p9yGe10k20mw3",
        "meta": {},
        "permissions": [
            "group.user"
        ],
        "user": "user_HiSOG53KzE1cc01rDZ4"
    },
    "via": "token" // {string} `session` or `token`, depending on auth instrument
}
how to authenticate your request