POST v1/LoginAppleAndGetUserWithNotification

Login and get master_user data for Apple user. (Replace: LoginFirstAppleSignInAndRetrieveUserData and LoginAppleSignInAndRetrieveUserData)

Request Information

URI Parameters

None.

Body Parameters

LoginAppleAndGetUserModel
NameDescriptionTypeAdditional information
AuthorizationCode

string

Required

Uuid

string

Required

TokenFirebase

string

None.

IsFirst

Identify if this is a first-time login. (Default = false)

boolean

Matching regular expression pattern: true|false

Request Formats

application/json, text/json

Sample:
{
  "AuthorizationCode": "sample string 1",
  "Uuid": "sample string 2",
  "TokenFirebase": "sample string 3",
  "IsFirst": true
}

application/xml, text/xml

Sample:
<ApiRequest.LoginAppleAndGetUserModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/apiTracker.Models.Struct">
  <AuthorizationCode>sample string 1</AuthorizationCode>
  <IsFirst>true</IsFirst>
  <TokenFirebase>sample string 3</TokenFirebase>
  <Uuid>sample string 2</Uuid>
</ApiRequest.LoginAppleAndGetUserModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.