Fetching Device Status API

Manager your connected device through API

Device Status API is disabled from Feb 1st, 2023 onwards, so any request made to this end point will fail

This API request will fetch the device details like battery percentage, queue count, free disk space etc

Phone Automation Service is depreciated

Device Status Request

POST https://pickyassist.com/app/api/v2/device-status

This API request will fetch the device details like battery percentage, queue count, free disk space etc

Request Body

NameTypeDescription

token

string

Your API Token for authorisation

{
  "project_id": "27",
  "device_id": "f5e17b8c81b8ecff",
  "phone_name": "Asus ASUS_Z010D",
  "battery_percentage": "",
  "charging_state": "",
  "wifi_signal_strength": "Not Connected",
  "internet_status": "",
  "message_queue_count": "2",
  "call_queue_count": "",
  "free_disk_space": "",
  "cloud_message_status": "Registered",
  "time": "10-07-2018 11:52 AM"
}

Sample Request

{
  "token": "PICKY_API_TOKEN"
}

Sample Response

{
  "project_id": "27",
  "device_id": "f5e17b8c81b8ecff",
  "phone_name": "Asus ASUS_Z010D",
  "battery_percentage": "",
  "charging_state": "",
  "wifi_signal_strength": "Not Connected",
  "internet_status": "",
  "message_queue_count": "2",
  "call_queue_count": "",
  "free_disk_space": "",
  "cloud_message_status": "Registered",
  "time": "10-07-2018 11:52 AM"
}

Response Variables

Variable

Type

Description

project_id

Numeric

Project id associated

device_id

Text

Device ID of the connected phone

battery_percentage

Numeric

Battery percentage of the connected phone

0-100 in percentage

wifi_signal_strength

Numeric

Wifi Signal Strength of the connected phone

0=Not Connected 1-100 in percentage

internet_status

Text

Internet Type & Status of the connected phone

2G 3G 4G

message_queue_count

Numeric

Messages Queue count if any in the phone

call_queue_count

Numeric

Call Queue count if any in the phone

free_disk_space

Numeric

Total Free Disk Space in the phone

cloud_message_status

Numeric

Phone Sync Status with Picky Assist Cloud Servers

0=Registered 1=Not Registered

time

Date

Date & Time when the record is updated , format DD-MM-YYYY hh:mm AM

Last updated