lists REST Endpoints
lists
The operations from the lists category.
- Create a row in a list
- Method: postPath:
/spaces/{spacename}/lists/({id: .+})/rows - Create list
- Method: postPath:
/spaces/{spacename}/lists - Creates a column in a list
- Method: postPath:
/spaces/{spacename}/lists/({listid: .+})/columns - Delete a column in a list
- Method: deletePath:
/spaces/{spacename}/lists/({listid: .+})/columns/({columnid: .+}) - Delete list
- Method: deletePath:
/spaces/{spacename}/lists/({id: .+}) - Deletes a row in a list
- Method: deletePath:
/spaces/{spacename}/lists/({listid: .+})/rows/({rowid: .+}) - Retrieve a column in a list
- Method: getPath:
/spaces/{spacename}/lists/({listid: .+})/columns/({columnid: .+}) - Retrieve list by compound ID
- Method: getPath:
/lists/({compoundId: .+}) - Retrieve list by ID
- Method: getPath:
/spaces/{spacename}/lists/({id: .+}) - Retrieves a row in a list
- Method: getPath:
/spaces/{spacename}/lists/({listid: .+})/rows/({rowid: .+}) - Retrieves all columns in a list
- Method: getPath:
/spaces/{spacename}/lists/({listid: .+})/columns - Retrieves lists in a portal based on search criteria
- Method: getPath:
/spaces/{spacename}/lists - Retrieves rows in a list based on search criteria
- Method: getPath:
/spaces/{spacename}/lists/({id: .+})/rows - Updates a column in a list
- Method: putPath:
/spaces/{spacename}/lists/({listid: .+})/columns/({columnid: .+}) - Updates a list definition
- Method: putPath:
/spaces/{spacename}/lists/({id: .+}) - Updates a row in a list
- Method: putPath:
/spaces/{spacename}/lists/({listid: .+})/rows/({rowid: .+})