Auth
Last updated
Last updated
POST /v1/auth/login HTTP/1.1
Host: customers-api.netnut.io
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 26
{
"email": "",
"password": ""
}{
"success": true,
"token": "text"
}GET /v1/auth/authenticated HTTP/1.1
Host: customers-api.netnut.io
Authorization: YOUR_API_KEY
Accept: */*
{
"success": true,
"token": "text"
}