POST v1/store/login

Logs the user into the store.

Request Information

URI Parameters

None.

Body Parameters

Provides the user's credentials and the unique ID of the store.

LoginModel
NameDescriptionTypeAdditional information
Email

The user's email address.

string

None.

Password

The user's password.

string

None.

StoreID

The store ID.

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "Email": "sample string 1",
  "Password": "sample string 2",
  "StoreID": "1fcca3fd-e94f-401a-b4fd-f9d0a61460ce"
}

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Returns a security token for the specified user for accessing the specified store.

SecurityTokenModel
NameDescriptionTypeAdditional information
Token

The security token.

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Token": "sample string 1"
}