📄️ List Records
List records in an App. Note that you must use the Table (App) Id when referencing the App. Returned records do not include any fields with "empty" values, e.g. "", [], or false.
📄️ Sorting and Filtering Records
The SmartSuite REST API gives you the ability to retrieve record data with the /records/list/ endpoint. The reason that this endpoint accepts POST requests (typically GET is used for retrieval) is that the body of the request can contain JSON representing sort and filter instructions for the request.
📄️ Get Record
Retrieve a single record from an App. Any "empty" fields (e.g. "", [], or false) in the record will not be returned.
📄️ Create Record
Creates a record in the specified App. Note that you must include any required fields in the POST or the system will return error code 422 “Invalid Request” - a detailed error message will be included in the response body.
📄️ Update Record
Updates a record in the specified App.
📄️ Delete Record
Deletes a record.
📄️ Bulk Add Records
Creates multiple records. Your request body should include an array (items) of up to 25 records. Each of those objects should be properly formed record objects.