GET
/
projects
/
{projectUUID}
Retrieve project
curl --request GET \
  --url https://api.fluxend.app/projects/{projectUUID} \
  --header 'Authorization: <authorization>'
{
  "content": {
    "createdAt": "<string>",
    "createdBy": "<string>",
    "dbName": "<string>",
    "description": "<string>",
    "name": "<string>",
    "organizationUuid": "<string>",
    "status": "<string>",
    "updatedAt": "<string>",
    "updatedBy": "<string>",
    "uuid": "<string>"
  },
  "errors": [
    "<string>"
  ],
  "metadata": "<any>",
  "success": true
}

Headers

Authorization
string
required

Bearer Token

Path Parameters

projectUUID
string
required

Project UUID

Response

200
application/json

Project details

The response is of type object.