Datagrid Rows
Retrieves multiple datagrid rows.
[]A UUID v4 string that identifies an entity.
A UUID v4 string that identifies an entity.
A UUID v4 string that identifies an entity.
semanticPossible values: ilikePossible values: The page number.
1The page size.
10The API key to use for authentication. Can be created in the api keys section on the workspace settings page.
Retrieves all datagrid rows for the specified datagrid.
A UUID v4 string that identifies an entity.
A UUID v4 string that identifies an entity.
Unauthorized.
Datagrid not found.
GET /api/v1/datagrid-rows?datagridId=123e4567-e89b-12d3-a456-426614174000 HTTP/1.1
Host: api.endless.zaia.app
authorization: text
Accept: */*
[
{
"createdAt": "2026-01-01T00:00:00.000Z",
"id": "123e4567-e89b-12d3-a456-426614174000",
"updatedAt": "2026-01-01T00:00:00.000Z",
"datagridId": "123e4567-e89b-12d3-a456-426614174000",
"position": 1,
"datagridValues": [
{
"createdAt": "2026-01-01T00:00:00.000Z",
"id": "123e4567-e89b-12d3-a456-426614174000",
"updatedAt": "2026-01-01T00:00:00.000Z",
"datagridColumnId": "123e4567-e89b-12d3-a456-426614174000",
"datagridId": "123e4567-e89b-12d3-a456-426614174000",
"datagridRowId": "123e4567-e89b-12d3-a456-426614174000",
"detail": {
"type": "string",
"value": "text"
}
}
]
}
]Creates a new datagrid row.
The API key to use for authentication. Can be created in the api keys section on the workspace settings page.
A UUID v4 string that identifies an entity.
The datagrid row was created with default values for all columns.
A UUID v4 string that identifies an entity.
A UUID v4 string that identifies an entity.
Unauthorized.
Datagrid not found.
Precondition failed.
POST /api/v1/datagrid-rows HTTP/1.1
Host: api.endless.zaia.app
authorization: text
Content-Type: application/json
Accept: */*
Content-Length: 66
{
"datagridId": "123e4567-e89b-12d3-a456-426614174000",
"position": 1
}{
"createdAt": "2026-01-01T00:00:00.000Z",
"id": "123e4567-e89b-12d3-a456-426614174000",
"updatedAt": "2026-01-01T00:00:00.000Z",
"datagridId": "123e4567-e89b-12d3-a456-426614174000",
"position": 1
}Removes multiple datagrid rows.
[]A UUID v4 string that identifies an entity.
A UUID v4 string that identifies an entity.
The API key to use for authentication. Can be created in the api keys section on the workspace settings page.
The datagrid rows were removed.
An informative message for a call that has no effective result to be returned.
Unauthorized.
DELETE /api/v1/datagrid-rows HTTP/1.1
Host: api.endless.zaia.app
authorization: text
Accept: */*
{
"message": "text"
}Retrieves a datagrid row.
A UUID v4 string that identifies an entity.
The API key to use for authentication. Can be created in the api keys section on the workspace settings page.
Retrieves a datagrid row.
A UUID v4 string that identifies an entity.
A UUID v4 string that identifies an entity.
Unauthorized.
Datagrid row not found.
GET /api/v1/datagrid-rows/{id} HTTP/1.1
Host: api.endless.zaia.app
authorization: text
Accept: */*
{
"createdAt": "2026-01-01T00:00:00.000Z",
"id": "123e4567-e89b-12d3-a456-426614174000",
"updatedAt": "2026-01-01T00:00:00.000Z",
"datagridId": "123e4567-e89b-12d3-a456-426614174000",
"position": 1,
"datagridValues": [
{
"createdAt": "2026-01-01T00:00:00.000Z",
"id": "123e4567-e89b-12d3-a456-426614174000",
"updatedAt": "2026-01-01T00:00:00.000Z",
"datagridColumnId": "123e4567-e89b-12d3-a456-426614174000",
"datagridId": "123e4567-e89b-12d3-a456-426614174000",
"datagridRowId": "123e4567-e89b-12d3-a456-426614174000",
"detail": {
"type": "string",
"value": "text"
}
}
]
}Removes a datagrid row.
A UUID v4 string that identifies an entity.
The API key to use for authentication. Can be created in the api keys section on the workspace settings page.
The datagrid row was removed.
An informative message for a call that has no effective result to be returned.
Unauthorized.
Datagrid row not found.
DELETE /api/v1/datagrid-rows/{id} HTTP/1.1
Host: api.endless.zaia.app
authorization: text
Accept: */*
{
"message": "text"
}A UUID v4 string that identifies an entity.
The API key to use for authentication. Can be created in the api keys section on the workspace settings page.
The datagrid row was updated.
A UUID v4 string that identifies an entity.
A UUID v4 string that identifies an entity.
Unauthorized.
The datagrid row was not found.
PATCH /api/v1/datagrid-rows/{id} HTTP/1.1
Host: api.endless.zaia.app
authorization: text
Content-Type: application/json
Accept: */*
Content-Length: 14
{
"position": 1
}{
"createdAt": "2026-01-01T00:00:00.000Z",
"id": "123e4567-e89b-12d3-a456-426614174000",
"updatedAt": "2026-01-01T00:00:00.000Z",
"datagridId": "123e4567-e89b-12d3-a456-426614174000",
"position": 1
}Last updated