Skip to main content
POST
/
partner
/
login
Partner Login Endpoint
curl --request POST \
  --url https://api.example.com/partner/login \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data 'Username=<string>' \
  --data 'Password=<string>' \
  --data 'GrantType=<string>' \
  --data 'Scope=<string>' \
  --data 'SecondsUntilExpire=<string>' \
  --data 'ClientId=<string>'
{
  "access_token": "<string>",
  "token_type": "<string>",
  "expires_in": 123,
  "refresh_token": "<string>",
  "client_id": "<string>"
}

Body

application/x-www-form-urlencoded

Form data for partner login.

Username
string
required

The username for partner login.

Minimum string length: 1
Password
string
required

The password for partner login.

Minimum string length: 1
GrantType
string
required

The grant type for partner login.

Minimum string length: 1
Scope
string | null

The grant type for partner login.

SecondsUntilExpire
string | null

The number of seconds until the token expires.

ClientId
string | null

The client ID for partner login.

Response

OK

Represents a baseline target with its name and grade.

access_token
string | null

Access token for authentication.

token_type
string | null

Type of the token.

expires_in
integer<int32>

Expiration time of the token in seconds.

refresh_token
string | null

Refresh token for obtaining new access tokens.

client_id
string | null

Scope of the access token.