You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Retrieves a Page object using the ID specified.
21
+
/// </summary>
22
+
/// <param name="pageId">Identifier for a Notion page</param>
23
+
/// <returns><see cref="Page"/></returns>
19
24
Task<Page>RetrieveAsync(stringpageId);
20
25
26
+
/// <summary>
27
+
/// Updates page property values for the specified page.
28
+
/// Note: Properties that are not set via the properties parameter will remain unchanged.
29
+
/// </summary>
30
+
/// <param name="pageId">Identifier for a Notion page</param>
31
+
/// <param name="updatedProperties">Property values to update for this page. The keys are the names or IDs of the property and the values are property values.</param>
/// Retrieves a property_item object for a given pageId and propertyId. Depending on the property type, the object returned will either be a value or a paginated list of property item values.
0 commit comments