Update Project Name

Description

This API enables you to update the name of a particular project referred by its Project ID. You must pass the updated name of the project in the request.

Request URL

https://api.catalyst.zoho.com/baas/v1/project/{project_id}

project_id - The unique ID of the project

Request Headers

Authorization: Zoho-oauthtoken 1000.910***************************16.2f****************************57
Content-Type: application/json

Request Method

PUT

Scope

ZOHOCATALYST.projects.Update

Request JSON Properties

AttributesData TypeMandatoryMax SizeDescription
project_nameStringYes50 charactersNew unique name of the project

Sample Request


				curl -X PUT \
  https://api.catalyst.zoho.com/baas/v1/project/4000000006007 \
  -H "Authorization: Zoho-oauthtoken 1000.910***************************16.2f****************************57" \
  -H "Content-Type: application/json" \
  -d '{
	"project_name" : "CustomerPortal"
}'			

Sample Response


				{
    "status": "success",
    "data": {
        "platforms": [],
        "project_name": "CustomerPortal",
        "created_by": {
            "zuid": 3000000006001,
            "is_confirmed": true,
            "email_id": "emma@zylker.com",
            "first_name": "Amelia",
            "last_name": "Burrows",
            "user_id": 671930455
        },
        "created_time": "Jan 29, 2020 11:59 AM",
        "redirect_url": "https://portal.zylker.com/",
        "project_domain_details": {
            "project_domain_id": 10018095112,
            "project_domain_name": "customerportal-697215025.development",
            "project_domain" : "customerportal-697215025.development.zohocatalyst.com",
            "user_auth": {},
            "mobile_auth": {}
        },
        "db_type": "SINGLE_DB",
        "id": 4000000006007
    }
}