POST v5/networks/{networkId}/authenticate?email={email}
authenticate a user with email for a school when a school with its credentials calls this api.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| networkId | No documentation available. |
Define this parameter in the request URI. |
email address of user |
Define this parameter in the request URI. |
Response Information
the authenticated member object for the user
Response body formats
application/json, text/json
Sample:
{
"accessToken": "sample string 1",
"refreshToken": "sample string 2",
"utcExpiresDate": "2025-12-07T05:10:02.965289-06:00",
"scope": "sample string 3"
}
application/xml, text/xml
Sample:
<AuthorizationOutVO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Internal.API.VO.Output"> <AccessToken>sample string 1</AccessToken> <RefreshToken>sample string 2</RefreshToken> <Scope>sample string 3</Scope> <UTCExpiresDate>2025-12-07T05:10:02.965289-06:00</UTCExpiresDate> </AuthorizationOutVO>
multipart/form-data
Sample:
Sample not available.