Get the Details of a Specific Project

Description

This API enables you to fetch the details of a specific project that a Catalyst project user, such as the developer or a collaborator, has logged into from their Catalyst account. The project is referred to by its project_id. The project details fetched are of the same Catalyst account the API is being executed from.

Request URL

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

project_id - The unique ID of the project

Request Header

Authorization: Zoho-oauthtoken 1000.910***************************16.2f****************************57

Request Method

GET

Scope

ZOHOCATALYST.projects.Read

Sample Request


				curl -X GET \
  https://api.catalyst.zoho.com/baas/v1/project/4000000006007 \
  -H "Authorization: Zoho-oauthtoken 1000.910***************************16.2f****************************57"			

Sample Response


				{
    "status": "success",
    "data": {
        "platforms": [
            "web"
        ],
        "project_name": "BillingDesk",
        "created_by": {
            "zuid": 1019540152,
            "is_confirmed": true,
            "email_id": "emma@zylker.com",
            "first_name": "Amelia",
            "last_name": "Burrows",
            "user_id": 671930455
        },
        "created_time": "Oct 13, 2019 04:20 PM",
        "redirect_url": "sign-in-redirect/index.html",
        "project_domain_details": {
            "project_domain_id": 10018095112,
            "project_domain_name": "billingdesk-697215025.development",
            "project_domain" : "billingdesk-697215025.development.zohocatalyst.com",
            "user_auth": {},
            "mobile_auth": {}
        },
        "db_type": "SINGLE_DB",
        "id": 4000000006007
    }
}