Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 6 Next »

is for generating an accesskey for a user. It takes as argument the username and password and it returns a json object which includes an accesskey. Most of the times, this endpoint is sufficient for generating access keys as it defaults to the Digizuite product.

URL : /ConnectService.js

Method : POST

Auth required : NO

Required parameters

NameExampleDescription
methodLogOnFixed parameter that identifies the endpoint method.
usernamedonaldYour username case insensitive.
password36846677e3a8f4c0b16d8bdf8ef18608

An MD5 representation of your password.
Password are not stored in MD5 but needs this representation for backwards compatibility.


cUrl data example

--data "username=donald^&password=36846677e3a8f4c0b16d8bdf8ef18608^&method=LogOn"

Success Response

Code : 200 OK

Content example

{
	{
		"success": "true",
		"items": [{
			"accessKey": "2d8319f4-7a57-4ca0-a027-c44c2f259aac",
			"memberId": "23",
			"itemid": "3154",
			"languageId": "3"
		}]
	}
}

Error Response

Code : 200 OK

Content  example

{ 
    "success": "false",
    "error": "Access denied."
}
  • No labels