Get project by ID

You can separately get a specific project for the current user by ID.

Parameters


>id Please include the ‘projectId’ in your query to specify which project you are referring to. This ID is required to correctly process your request

Returns


Upon successful completion of the request, you are provided with complete information about the requested project.

You can see how to get a list of all projects for users by following this link.

/rest/v1/projects/your-project-id
Example
{
  "id": "4b4937ce-2a37-4143-97ef-c689a43e70a8"
}

Responses

Successful operation

Example
{
    "is_public": false,
    "name": "Projnew",
    "id": "4b4937ce-2a37-4143-97ef-c689a43e70a8",
    "updated_at": "2024-04-26T13:12:24.692852+00:00",
    "created_at": "2024-04-26T13:12:24.692852+00:00"
}
Schema
{

"is_public": "boolean",
"name":	"string",
"id":	"string"($uuid),
"updated_at":	{
      oneOf ->	string($date)
                string($date-time)
              }
"created_at":	{
      oneOf ->	string($date)
                string($date-time)
              }
}
Was this article helpful to you? Yes No

How can we help?