HallsRetrieve a specific hall

Retrieve a specific hall

Retrieves details of a specific hall identified by its unique id. The user must have the necessary permissions to access the hall.

curl -X GET "https://wm.novoai.de/v2/halls/1" \
  -H "Content-Type: application/json" \
  -H "accept: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN (JWT)" \
  -H "X-API-KEY: YOUR_API_KEY"
{
  "id": 1,
  "name": "Main Hall",
  "description": "Main manufacturing hall",
  "meta_frontend": {},
  "active": true
}
GET
/v2/halls/{id}
GET
Base URLstring

Target server for requests. Edit to use your own host.

Bearer Token (JWT)
Bearer Tokenstring
Required

JWT Bearer token authentication. Include in the Authorization header as Bearer <token>.

JWT Bearer token authentication. Include in the Authorization header as Bearer <token>.
API Key (header: X-API-KEY)
X-API-KEYstring
Required

API-Access Key authentication. Include the generated key in the X-API-KEY header.

API-Access Key authentication. Include the generated key in the X-API-KEY header.
path
idinteger
Required

The unique identifier of the hall to retrieve.

header
acceptstring
Required

Must be application/json.

Request Preview
Response

Response will appear here after sending the request

Authentication

header
Authorizationstring
Required

Bearer token (JWT). JWT Bearer token authentication. Include in the Authorization header as Bearer \<token\>.

header
X-API-KEYstring
Required

API Key for authentication. API-Access Key authentication. Include the generated key in the X-API-KEY header.

Path Parameters

idinteger
Required

The unique identifier of the hall to retrieve.

Example:
1

Headers

acceptstring
Required

Must be application/json.

Example:
application/json

Responses

idinteger

Unique identifier for the hall.

namestring

Name of the hall.

descriptionstring

Description of the hall.

meta_frontendobject

Additional frontend metadata.

activeboolean

Indicates if the hall is active.