Get the Details of All Projects

Description

This API enables you to fetch the details of all the projects of the Catalyst project user, such as the developer or a collaborator, logged in currently. 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

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 \
  -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": "billing.zylker.com/index.html",
            "project_domain_details": {
                "project_domain_id": 10016603823,
                "project_domain_name": "billingdesk-697215025.development",
                "project_domain" : "billingdesk-697215025.development.zohocatalyst.com",
                "user_auth": {},
                "mobile_auth": {}
            },
            "db_type": "SINGLE_DB",
            "id": 3333000000014001
        },
       {
            "platforms": [
                "web"
            ],
            "project_name": "ShipmentTracking",
            "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": "portal.zylker.com/index.html",
            "project_domain_details": {
                "project_domain_id": 10016603823,
                "project_domain_name": "shipmenttracking-697218907.development",
                "user_auth": {},
                "mobile_auth": {}
            },
            "db_type": "SINGLE_DB",
            "id": 3333000000080765
        }
    ]
}