REST API for Oracle WebCenter Portal

lists REST Endpoints

lists
The operations from the lists category.
Create a row in a list
Method: post
Path: /spaces/{spacename}/lists/({id: .+})/rows
Create list
Method: post
Path: /spaces/{spacename}/lists
Creates a column in a list
Method: post
Path: /spaces/{spacename}/lists/({listid: .+})/columns
Delete a column in a list
Method: delete
Path: /spaces/{spacename}/lists/({listid: .+})/columns/({columnid: .+})
Delete list
Method: delete
Path: /spaces/{spacename}/lists/({id: .+})
Deletes a row in a list
Method: delete
Path: /spaces/{spacename}/lists/({listid: .+})/rows/({rowid: .+})
Retrieve a column in a list
Method: get
Path: /spaces/{spacename}/lists/({listid: .+})/columns/({columnid: .+})
Retrieve list by compound ID
Method: get
Path: /lists/({compoundId: .+})
Retrieve list by ID
Method: get
Path: /spaces/{spacename}/lists/({id: .+})
Retrieves a row in a list
Method: get
Path: /spaces/{spacename}/lists/({listid: .+})/rows/({rowid: .+})
Retrieves all columns in a list
Method: get
Path: /spaces/{spacename}/lists/({listid: .+})/columns
Retrieves lists in a portal based on search criteria
Method: get
Path: /spaces/{spacename}/lists
Retrieves rows in a list based on search criteria
Method: get
Path: /spaces/{spacename}/lists/({id: .+})/rows
Updates a column in a list
Method: put
Path: /spaces/{spacename}/lists/({listid: .+})/columns/({columnid: .+})
Updates a list definition
Method: put
Path: /spaces/{spacename}/lists/({id: .+})
Updates a row in a list
Method: put
Path: /spaces/{spacename}/lists/({listid: .+})/rows/({rowid: .+})