Skip to main content
GET
/
v1
/
logical-environments
/
{id}
Describe a logical environment
curl --request GET \
  --url https://api.app.chainloop.dev/v1/logical-environments/{id} \
  --header 'Authorization: Bearer <token>'
{
  "logical_environment": {
    "updated_at": "2000-01-23T04:56:07.000Z",
    "organization_id": "organization_id",
    "name": "name",
    "description": "description",
    "created_at": "2000-01-23T04:56:07.000Z",
    "id": "id"
  }
}

Authorizations

Authorization
string
header
required

Bearer token for authentication

Path Parameters

id
string
required

ID is the unique identifier of the logical environment

Query Parameters

name
string

Name of the logical environment

Response

A successful response.

logical_environment
LogicalEnvironment represents a logical environment entity · object
Example:
{
"updated_at": "2000-01-23T04:56:07.000Z",
"organization_id": "organization_id",
"name": "name",
"description": "description",
"created_at": "2000-01-23T04:56:07.000Z",
"id": "id"
}