Skip to content

Commit

Permalink
fix typos in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
pokornyd committed Feb 1, 2024
1 parent 7f4f52f commit a2216c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ The `ManagementClient` class is the main class of the SDK. Using this class, you
To create an instance of the class, you need to provide:

- [ProjectId](https://kontent.ai/learn/tutorials/develop-apps/get-content/get-content-items#a-1-find-your-project-id): the ID of your Kontent.ai project. This parameter must always be set.
- [SubscriptionId](https://kontent.ai/learn/reference/management-api-v2/#tag/Subscription): the ID of your subcription. Set it up if you need to manage users and their permissions.
- [SubscriptionId](https://kontent.ai/learn/reference/management-api-v2/#tag/Subscription): the ID of your subscription. Set it up if you need to manage users and their permissions.
- [ApiKey](https://kontent.ai/learn/reference/management-api-v2/#section/Authentication/API-keys): either Management or Subscription API key.
- Subscription API key can be used for all endpoints but is limited to subscription admins
- Management API key can be used with project-specific endpoints and is limited to users with the Manage APIs permission.
Expand Down Expand Up @@ -67,7 +67,7 @@ var externalIdIdentifier = Reference.ByExternalId("Ext-Item-456-Brno");
### User identifier

The SDK also suports endpoints that require either user ID or email. _UserIdentifier_ object represents identification of an user. See following example for more detail.
The SDK also supports endpoints that require either user ID or email. _UserIdentifier_ object represents identification of an user. See following example for more detail.

```csharp
UserIdentifier identifier = UserIdentifier.ById("usr_0vKjTCH2TkO687K3y3bKNS");
Expand Down

0 comments on commit a2216c5

Please sign in to comment.