Back to Microsoft SharePoint Integrations
Handler · Version 1

SharePoint List Item Add Microsoft SharePoint

Download GitHub

About

This handler creates an item for a given Sharepoint list using the REST API and basic authentication. The item to be created is passed as a JSON string, where the keys are the list item labels (Title, Due Date, etc) and the values are the values to place in those columns when the item is created. The field keys for a list can also be found by using Sharepoint List Items Retrieve to get an already created item, which can then be used to determine which keys match up with what columns. Any errors that happen during the call are caught and re-raised and the handler will return the Id of the new item after the end of a successful call.

  • Make sure the SharePoint Web Services database is turned on.
Configurations
Name Description Sample
username The username of the Sharepoint account.
password The password of the Sharepoint account. *********
domain The domain of the Sharepoint server that will be used for authentication.
sharepoint_location The location/url of the main sharepoint site
enable_debug_logging Enable debug logging if the value is set to 'Yes'. No
Parameters
Name Description Sample
List Name The name of the list that the item will be added to. Sample List
Item (JSON) A JSON representation of the item that should be created. {"Title": "Sample Title", "Random Number": 15, "Random Date": "2017-12-22"}
Results
Name Description
Id Id of the newly created list item
Changelog

Sharepoint List Item Add V1 (2017-12-21)

  • Initial version. See README for details.
Download GitHub

On This Page

Looking for a workflow engine? Learn more about the Kinetic Data Enterprise Workflow Platform. Check it out
Return to Top