Description
Retrieves a specific list item in a SharePoint list.
Parameters
Name | Type | Description |
---|---|---|
listTitle | String | The title of the list that contains the list item. Exactly one of |
listUrl | String | The relative server URL of the list that contains the list item. Exactly one of |
listItemId | Integer, required | The ID of the list item to retrieve |
authDetails | Object, optional | The authDetails set in the worker configuration to use. If not set the request will use the default authDetails |
authDetails.identifier | String | The identifier of authDetails set in the worker configuration |
authDetails.authType | String | The authType of authDetails set in the worker configuration |
returnProperties | Array <strings>, optional | An array of strings containing the properties you want to retrieve. If this isn't specified, then all properties will be returned |
Example
{
"id": "123",
"jsonrpc": "2.0",
"method": "getListItem",
"params": {
"listTitle": "GossTest",
"listItemId": 25,
"returnProperties": ["Name", "Organisation"]
}
}
Last modified on 27 June 2023