Authentication Process

Authentication Process

Login

POST /api/v1/accounts/login

Request Body

NameTypeDescription

username*

String

StandardRegistry

password*

String

test

"username": "StandardRegistry",
    "did": "did:hedera:testnet:5jDN1zBJPjjQhRDZ4MV3q5CFUVM99WvfJ3zMLLhLS2yk_0.0.7495695",
    "role": "STANDARD_REGISTRY",
    "refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9....."

Access Token

POST /api/v1/accounts/access-token

Request Body

NameTypeDescription

refreshToken*

String

eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.......

{
    "accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9......
}

Account Session

GET /api/v1/accounts/session

Headers

NameTypeDescription

Authorization Bearer

String

eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9......

 "_id": "659e8127db770133c0d8fb26",
    "createDate": "2024-01-10T11:36:07.320Z",
    "updateDate": "2024-01-23T13:53:36.347Z",
    "username": "StandardRegistry",
    "password": "9f86d081884c7d659.....",
    "did": "did:hedera:testnet:5jDN1zBJPjjQhRDZ4MV3q5CFUVM99.....",
    "walletToken": "",
    "hederaAccountId": "0.0.749...",
    "role": "STANDARD_REGISTRY",
    "refreshToken": "a0dbe6f.....",
    "id": "659e8127db770133c..."

Last updated