Skip to content

Authenticate via JSON body

POST
/kosync/users/auth

Validate KoSync credentials provided as a JSON body. Returns the md5-hashed password as the userkey for subsequent sync requests.

Request Body

application/json
JSON
{
  
"username": "string",
  
"password": "string"
}

Responses

Authentication successful

application/json
JSON
{
  
"authorized": "string",
  
"userkey": "string"
}

Samples