We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 00e71bd + c7f4923 commit 17a2d70Copy full SHA for 17a2d70
README.md
@@ -24,11 +24,18 @@ dotnet add package Notion.Net
24
25
Import and initialize the client using the integration token created above.
26
27
-
+```csharp
28
+var client = new NotionClient(new ClientOptions
29
+{
30
+ AuthToken = "<Token>"
31
+});
32
+```
33
34
Make A request to any Endpoint. For example you can call below to fetch the paginated list of users.
35
-
36
37
+var usersList = await client.Users.ListAsync();
38
39
40
### Querying a database
41
0 commit comments