Sample Contents

Overview

Welcome to the API documentation for our SharePoint integration. This API allows external users to interact with our SharePoint lists, providing functionality for creating, reading, updating, and deleting list items.

Key Features

  • Secure Authentication: OAuth 2.0 based secure authentication.

  • Comprehensive Endpoints: Endpoints for all major operations on SharePoint lists.

  • Detailed Error Handling: Understand and resolve errors with comprehensive documentation.

Create Item

POST /sites/{site-id}/lists/{list-id}/items

Creates a new item in the specified SharePoint list.

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer {access_token}

Body

{
    "fields": {
        "Title": "Sample Title",
        "CustomField": "Sample Data"
    }
}

Response

Example

Last updated