v1

latestOpenAPI 3.1.02026-07-1320186461.3 KB

Create Or Get Project Api

Create a project or get the project if it already exists. Is used to find out UUID of project.

post/api/parea/v1/project

Request body

namestring required

Name of the project

Example request

{
  "name": "development"
}

Response

Successful Response

namestring required

Name of the project

uuidstring required

UUID of the project

created_atstring required

Timestamp the project was created

was_createdboolean required

If the project was created or not.

Example response

{
  "created_at": "2024-05-30 13:48:34",
  "name": "development",
  "uuid": "...",
  "was_created": false
}