Sign in

POST https://ppk.geodnet.com/api/user/signin

Request Body application/json

Parameter
Example
Type
Required
Description

username

geoduser

String

Yes

Username

password

geodpass

String

Yes

Password

cURL

curl -X POST "https://ppk.geodnet.com/api/user/signin"
  -H "Content-Type: application/json"
  -d '{"username":"geoduser","password":"geodpass"}'
              

Request Example JSON

{
  "username": "geoduser",
  "password": "geodpass"
}

Response 200 Success

{
  "code": 200,
  "message": "Success",
  "data": { "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..." }
}

Last updated