POST api/v1/auth

Request Information

URI Parameters

None.

Body Parameters

UserAuth
NameDescriptionTypeAdditional information
LoginId

string

Required

Password

string

Required

Request Formats

application/json, text/json

Sample:
{
  "LoginId": "sample string 1",
  "Password": "sample string 2"
}

application/xml, text/xml

Sample:
<UserAuth xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <LoginId>sample string 1</LoginId>
  <Password>sample string 2</Password>
</UserAuth>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

MovamApiResponse
NameDescriptionTypeAdditional information
Message

string

None.

Data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Message": "sample string 1",
  "Data": {}
}

application/xml, text/xml

Sample:
<MovamApiResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <Message>sample string 1</Message>
  <Data />
</MovamApiResponse>