POST /projects/{project}/column/{table}
Columns
POST /projects/{project}/column/{table}
Adds a non-primary column to an existing table.
POST
POST /projects/{project}/column/{table}
Adds a non-primary column to an existing table.
Full request:
Error or alternate response:
Endpoint details
Bearer
pat_... (Project API Token). Keep this token on your backend/server.Project slug. This acts as the Project ID in API paths.
Table name inside the project.
true for a successful response and false for an error response.Endpoint-specific response data when
ok is true; null on errors.Error code and message when
ok is false; null on success.Request identifier you can use when troubleshooting a specific API call.
Authentication
Project API Token.Parameters
Path:table required. Body: column_name required; column_type optional default TEXT; is_nullable optional default true; default_value optional; is_unique optional default false; is_primary is rejected for added columns.