Manage API Token

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 disable / enable / delete API tokens

Manage API Token

POST https://pickyassist.com/app/api/v2/pm/manage-api-token

This API allows you to disable / enable / delete API tokens

Request Body

NameTypeDescription

token

string

Your Master API Token for authentication

project_id

number

Project Id in which the API needs to be generated

api_token

string

API token to be disabled / enabled / deleted

action

number

Pass what action needs to be taken 1 = Disable 2 = Enable 3 = Delete

{
   "status":100,
   "message":"Success"
}

Response Variables

Variable

Type

Description

status

numeric

Status of the Request

100 = Sucess

Refer Error Codes for complete Status Codes

Sample Request Body JSON

{
   "token":"erererewrwercvcv",
   "project_id":7715,
   "api_token":"erewrercxvcvcxvcxv",
   "action":1
}

Sample Response

{
   "status":100,
   "message":"Success"
}

Last updated