API Reference

Create Table

1min
POST

This endpoint allows you to create a new Table.

Request Body:

  • Id (integer) - The unique identifier for the Table.

  • Name (string) - The name of the Table.

  • HunniFolderId (integer) - The identifier of the folder where the Table belongs.

  • Description (string) - A description of the HunniTable.

  • HunniColumns (array) - An array of columns for the Table, each containing:

    • Id (integer) - The unique identifier for the column.

    • HunniTableId (integer) - The identifier of the parent Table.

    • Name (string) - The name of the column.

    • HunniColumnTypeId (integer) - The identifier for the type of the column.

    • HunniColumnTypeName (string) - The name of the type of the column.

    • IsRequired (boolean) - Indicates if the column is required.

    • DisplayOrder (integer) - The display order of the column.

Response:

  • Message (string) - A message related to the operation.

  • IsSuccess (boolean) - Indicates if the operation was successful.

  • ObjectId (string) - The identifier of the created object.

Header Parameters
Content-Type
Accept
Body Parameters
body
Responses
200
OK