Get Project Details

Fetching Project Details

Project Management API is disabled from Feb 1st, 2023 onwards, so any request made to this en point will fail

This API allows you to fetch project details from your account.

Get Project Details

POST https://pickyassist.com/app/api/v2/pm/get-projects

This API allows you to get project details

Request Body

NameTypeDescription

token

string

Your Master API Token for authentication

project_id

number

Pass the project id for fetch details 0 = Fetch All Projects in your account

{
   "status":100,
   "message":"Success",
   "project_status":"Active",
   "project_id":"715",
   "project_name":"api test project1",
   "number":"9234324324",
   "company_name":"picky test",
   "country":"IN",
   "time_zone":"Asia/Kolkata",
   "date_format":DD-MM-YYYY,
   "service":1,
   "license_key":"9bb448151f161d292e212b05c835c4",
   "qr_code_base64":"aHR0cDovL2Rldi1waWNreS5jb20vdXBsb2Fkcy9pbWFnZXMvcXJjb2RlXzVlZTBiNDcyMGU2ZWYucG5n",
   "unbranded_keyword":"XY404793eFMMejtejZ",
   "branded_keyword":"",
   "api_tokens":[
      {
         "ip":"192.168.0.1",
         "token":"6999c1c7f31f50828ce24c6a509c41c57ec8b78c"
      },
      {
         "ip":"202.164.148.84",
         "token":"f368691b8436f164e527af9af942010708227296"
      }
   ],
    "global_webhook":"https://pickyassist.com/beta/test_webhook.php",
   "event_webhook":"https://pickyassist.com/beta/event_webhook.php",
   "smart_reply_webhook":"https://pickyassist.com/beta/test_webhook.php",
   "next_billing_date":"",
   "amount_debited":"",
   "notes":""
}

Response Variables

Variable

Type

Description

status

numeric

Status of the Request

100 = Sucess

Refer Error Codes for complete Status Codes

message

string

Error or detailed response Message details

project_status

string

Active

Expired

Delete

project_id

numeric

Unique Project ID , using this id need to communicate further for all quires

project_name

string

Name of the Project

number

number

Number of the Project

company_name

string

Company Name

country

string

This is a complete list of all country ISO codes as described in the ISO 3166 international standard. Refer Here

time_zone

string

Time zone in the specific format. Refer Here

date_format

numeric

YYYY-MM-DD DD-MM-YYYY MM-DD-YYYY

service

numeric

1 = Phone Automation

2 = WhatsApp Official Account

license_key

string

License key of the project (only for phone automation)

qr_code_base64

string

QR code of the license key for quick pairing the bridge app with the project

unbranded_keyword

string

Unbranded Shared Number for the project

branded_keyword

string

Branded keyword if active in the project

api_tokens

array

This is an array where you will get following details

ip = IP Address

token = API Token

global_webhook

url

Global Webhook if configured

event_webhook

url

Event Webhook if configured

smart_reply_webhook

url

Smart Reply Webhook if configured

billing_plan

numeric

1= Pay As You Go

2= Phone Automation Small 3= Phone Automation Medium 4 =Phone Automation Large 5= Phone Automation Unlimited 6 = Phone Automation Yearly Unlimited

7 = Medium WhatsApp Official

8 = Large WhatsApp Official

9 = Unlimited WhatsApp Official

next_billing_date

date

next billing date and time in ISO Standard format

notes

string

notes

Sample Request Body JSON

{
   "token":"3434dfd434343",
   "project_id":715
}

Sample Response

{
   "status":100,
   "message":"Success",
   "project_status":"Active",
   "project_id":"715",
   "project_name":"api test project1",
   "number":"9234324324",
   "company_name":"picky test",
   "country":"IN",
   "time_zone":"Asia/Kolkata",
   "date_format":DD-MM-YYYY,
   "service":1,
   "license_key":"9bb448151f161d292e212b05c835c4",
   "qr_code_base64":"aHR0cDovL2Rldi1waWNreS5jb20vdXBsb2Fkcy9pbWFnZXMvcXJjb2RlXzVlZTBiNDcyMGU2ZWYucG5n",
   "unbranded_keyword":"XY404793eFMMejtejZ",
   "branded_keyword":"",
   "api_tokens":[
      {
         "ip":"192.168.0.1",
         "token":"6999c1c7f31f50828ce24c6a509c41c57ec8b78c"
      },
      {
         "ip":"202.164.148.84",
         "token":"f368691b8436f164e527af9af942010708227296"
      }
   ],
    "global_webhook":"https://pickyassist.com/beta/test_webhook.php",
   "event_webhook":"https://pickyassist.com/beta/event_webhook.php",
   "smart_reply_webhook":"https://pickyassist.com/beta/test_webhook.php",
   "next_billing_date":"",
   "amount_debited":"10",
   "notes":""
}

Last updated