Skip to content
This repository has been archived by the owner on May 13, 2021. It is now read-only.

ph settings

Liam Jack edited this page Aug 25, 2015 · 5 revisions

Endpoint

/ph/settings

Description

This is a multi-functional endpoint that can change multiple account settings.

Send TFA Code

Description

Used to send a two factor authentication verification code to the account phone number.

Request

  • action: sendTwoFACode
  • timestamp
  • req_token
  • username

Response

  • logged: true or false
  • message

Enable TFA

Description

Used to enable two factor authentication after receiving a verification code by SMS.

Request

  • action: enableTwoFA
  • code: Verification code received by SMS (Example: 986605)
  • dsig
  • dtoken1i
  • password: This is the account username (Don't ask me why.)
  • timestamp
  • req_token
  • username

Response

Success

  • logged: true
  • two_fa_verified_devices: Array of devices
    • id: Random UUID to identify the device
    • last_login: Timestamp of last login
    • name: Device name (Example: Android Device)

Error

  • logged: false
  • message

Disable TFA

Description

Used to disable two factor authentication

Request

  • action: disableTwoFA
  • timestamp
  • req_token
  • username

Response

  • logged: true or false
Clone this wiki locally