Credentials

Represents the authentication credentials of a user account.

Fields

Username
The username of the authenticating user account.
Password
The user account password.

Examples

JSON body:

{
  "Username": "me",
  "Password": "my_password"
}

XML body:

<?xml version="1.0"?>
<Credentials xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <Username>me</Username>
  <Password>my_password</Password>
</Credentials>

CSV body:

Username,Password
me,my_password