Authentication

Sign up and log in through our APIs to seamlessly register your organisation.

Sign up

Signup with Luganodes through the signup API with your organization details to receive your API key.

Signup

POST /api/signup

Create an account for your organization with Luganodes.

Request Body

{
  "result": {
    "user": {
      "apiKey": "isqMH8hfQB4IOf7CqPwEdQdQIP6Af6Ux3BWQJP6auF4="
    }
  }
}

Sample Request

curl --location -g '{{url}}/api/signup' \
--data-raw '{
    "email": "test@luganodes.com",
    "password": "gJHKLL47JihNs9",
    "orgName":"LuganoTesting1"
}'

Request Body

Response Object

Login

Login with your existing credentials to receive your API key.

Login

POST /api/login

Login into an account with Luganodes.

Request Body

{
  "result": {
    "user": {
      "apiKey": "isqMH8hfQB4IOf7CqPwEdQdQIP6Af6Ux3BWQJP6auF4="
    }
  }
}

Sample Request

curl --location -g '{{url}}/api/login' \
--data-raw '{
    "email": "test@luganodes.com",
    "password": "gJHKLL47JihNs9"
}'

Last updated