GET /groups/{group-id}/sites/delta()
Get newly created, updated, or deleted sites without having to perform a full read of the entire sites collection. A delta function call for sites is similar to a GET request, except that by appropriately applying state tokens in one or more of these calls, you can query for incremental changes in the sites. It allows you to maintain and synchronize a local store of a user's sites without having to fetch all the sites from the server every time. The application calls the API without specifying any parameters. The service begins enumerating sites and returns pages of changes to these sites, accompanied by either an @odata.nextLink or an @odata.deltaLink. Your application should continue making calls using the @odata.nextLink until there's an @odata.deltaLink in the response. After you receive all the changes, you can apply them to your local state. To monitor future changes, call the delta API by using the @odata.deltaLink in the previous response. Any resources marked as deleted should be removed from your local state.
Servers
- https://graph.microsoft.com/v1.0
Path parameters
Name | Type | Required | Description |
---|---|---|---|
group-id |
String | Yes |
The unique identifier of group |
Query parameters
Name | Type | Required | Description |
---|---|---|---|
$orderby[] |
Array | No |
Order items by property values |
$top |
Integer | No |
Show only the first n items |
$count |
Boolean | No |
Include count of items |
$filter |
String | No |
Filter items by property values |
$skip |
Integer | No |
Skip the first n items |
$select[] |
Array | No |
Select properties to be returned |
$expand[] |
Array | No |
Expand related entities |
$search |
String | No |
Search items by search phrases |
How to start integrating
- Add HTTP Task to your workflow definition.
- Search for the API you want to integrate with and click on the name.
- This loads the API reference documentation and prepares the Http request settings.
- Click Test request to test run your request to the API and see the API's response.