Skip to content

Commit

Permalink
Fix: Syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
dgilling committed Dec 19, 2019
1 parent aa3761f commit ae49150
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ catch(APIException) {};

Create or update a user profile in Moesif.
The metadata field can be any customer demographic or other info you want to store.
Only the `userId` field is required.
Only the `UserId` field is required.
For details, visit the [C# API Reference](https://www.moesif.com/docs/api?csharp#update-a-user).

```csharp
Expand Down Expand Up @@ -221,7 +221,7 @@ var metadataB = new Dictionary<string, object>
var userB = new UserModel()
{
UserId = "54321",
CompanyId = "67890",
CompanyId = "67890",
Metadata = metadataA
};

Expand All @@ -240,7 +240,7 @@ apiClient.UpdateUsersBatch(users);

Create or update a company profile in Moesif.
The metadata field can be any company demographic or other info you want to store.
Only the `company_id` field is required.
Only the `CompanyId` field is required.
For details, visit the [C# API Reference](https://www.moesif.com/docs/api?csharp#update-a-company).
```csharp
Expand Down Expand Up @@ -289,7 +289,7 @@ apiClient.UpdateCompany(company);
## Update Companies in Batch

Similar to updateCompany, but used to update a list of companies in one batch.
Only the `company_id` field is required.
Only the `CompanyId` field is required.
For details, visit the [C# API Reference](https://www.moesif.com/docs/api?csharp#update-companies-in-batch).
```csharp
Expand All @@ -303,7 +303,7 @@ var campaignA = new CampaignModel()
{
UtmSource = "google",
UtmMedium = "cpc"
UtmCampaign = "adwords"
UtmCampaign = "adwords"
UtmTerm = "api+tooling"
UtmContent = "landing"
};
Expand Down

0 comments on commit ae49150

Please sign in to comment.