Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14,317 changes: 14,312 additions & 5 deletions reference.md

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions src/Merge.Client.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31903.59
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Merge.Client", "Merge.Client\Merge.Client.csproj", "{99CD0E0D-82DE-4D05-9ABF-5B67B4058FC8}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Merge.Client", "Merge.Client\Merge.Client.csproj", "{F564FD08-8F64-4BA3-A9FD-3AC19D63B5F6}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Merge.Client.Test", "Merge.Client.Test\Merge.Client.Test.csproj", "{EF07BAED-762B-45DE-A732-0FA850FDEB9C}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Merge.Client.Test", "Merge.Client.Test\Merge.Client.Test.csproj", "{FDEE9F11-6CD6-41A4-A07F-B6C2F83907D9}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -16,13 +16,13 @@ Global
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{99CD0E0D-82DE-4D05-9ABF-5B67B4058FC8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{99CD0E0D-82DE-4D05-9ABF-5B67B4058FC8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{99CD0E0D-82DE-4D05-9ABF-5B67B4058FC8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{99CD0E0D-82DE-4D05-9ABF-5B67B4058FC8}.Release|Any CPU.Build.0 = Release|Any CPU
{EF07BAED-762B-45DE-A732-0FA850FDEB9C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{EF07BAED-762B-45DE-A732-0FA850FDEB9C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{EF07BAED-762B-45DE-A732-0FA850FDEB9C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EF07BAED-762B-45DE-A732-0FA850FDEB9C}.Release|Any CPU.Build.0 = Release|Any CPU
{F564FD08-8F64-4BA3-A9FD-3AC19D63B5F6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F564FD08-8F64-4BA3-A9FD-3AC19D63B5F6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F564FD08-8F64-4BA3-A9FD-3AC19D63B5F6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F564FD08-8F64-4BA3-A9FD-3AC19D63B5F6}.Release|Any CPU.Build.0 = Release|Any CPU
{FDEE9F11-6CD6-41A4-A07F-B6C2F83907D9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FDEE9F11-6CD6-41A4-A07F-B6C2F83907D9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FDEE9F11-6CD6-41A4-A07F-B6C2F83907D9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FDEE9F11-6CD6-41A4-A07F-B6C2F83907D9}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
6 changes: 6 additions & 0 deletions src/Merge.Client/Accounting/AccountingClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ internal AccountingClient(RawClient client)
LinkToken = new LinkTokenClient(_client);
LinkedAccounts = new LinkedAccountsClient(_client);
Passthrough = new PassthroughClient(_client);
PaymentMethods = new PaymentMethodsClient(_client);
PaymentTerms = new PaymentTermsClient(_client);
Payments = new PaymentsClient(_client);
PhoneNumbers = new PhoneNumbersClient(_client);
PurchaseOrders = new PurchaseOrdersClient(_client);
Expand Down Expand Up @@ -118,6 +120,10 @@ internal AccountingClient(RawClient client)

public PassthroughClient Passthrough { get; }

public PaymentMethodsClient PaymentMethods { get; }

public PaymentTermsClient PaymentTerms { get; }

public PaymentsClient Payments { get; }

public PhoneNumbersClient PhoneNumbers { get; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@ public async System.Threading.Tasks.Task<AccountingPeriod> RetrieveAsync(
{
_query["include_remote_data"] = JsonUtils.Serialize(request.IncludeRemoteData.Value);
}
if (request.IncludeShellData != null)
{
_query["include_shell_data"] = JsonUtils.Serialize(request.IncludeShellData.Value);
}
var response = await _client
.MakeRequestAsync(
new RawClient.JsonApiRequest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ public record AccountingPeriodsRetrieveRequest
/// </summary>
public bool? IncludeRemoteData { get; set; }

/// <summary>
/// Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null).
/// </summary>
public bool? IncludeShellData { get; set; }

public override string ToString()
{
return JsonUtils.Serialize(this);
Expand Down
8 changes: 8 additions & 0 deletions src/Merge.Client/Accounting/Accounts/AccountsClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,10 @@ public async System.Threading.Tasks.Task<PaginatedAccountList> ListAsync(
Constants.DateTimeFormat
);
}
if (request.Name != null)
{
_query["name"] = request.Name;
}
if (request.PageSize != null)
{
_query["page_size"] = request.PageSize.Value.ToString();
Expand Down Expand Up @@ -213,6 +217,10 @@ public async System.Threading.Tasks.Task<Account> RetrieveAsync(
{
_query["include_remote_data"] = JsonUtils.Serialize(request.IncludeRemoteData.Value);
}
if (request.IncludeShellData != null)
{
_query["include_shell_data"] = JsonUtils.Serialize(request.IncludeShellData.Value);
}
if (request.RemoteFields != null)
{
_query["remote_fields"] = request.RemoteFields.Value.Stringify();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ public record AccountsListRequest
/// </summary>
public DateTime? ModifiedBefore { get; set; }

/// <summary>
/// If provided, will only return Accounts with this name.
/// </summary>
public string? Name { get; set; }

/// <summary>
/// Number of results to return per page.
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ public record AccountsRetrieveRequest
/// </summary>
public bool? IncludeRemoteData { get; set; }

/// <summary>
/// Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null).
/// </summary>
public bool? IncludeShellData { get; set; }

/// <summary>
/// Deprecated. Use show_enum_origins.
/// </summary>
Expand Down
4 changes: 4 additions & 0 deletions src/Merge.Client/Accounting/Addresses/AddressesClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ public async System.Threading.Tasks.Task<Address> RetrieveAsync(
{
_query["include_remote_data"] = JsonUtils.Serialize(request.IncludeRemoteData.Value);
}
if (request.IncludeShellData != null)
{
_query["include_shell_data"] = JsonUtils.Serialize(request.IncludeShellData.Value);
}
if (request.RemoteFields != null)
{
_query["remote_fields"] = request.RemoteFields.ToString();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ public record AddressesRetrieveRequest
/// </summary>
public bool? IncludeRemoteData { get; set; }

/// <summary>
/// Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null).
/// </summary>
public bool? IncludeShellData { get; set; }

/// <summary>
/// Deprecated. Use show_enum_origins.
/// </summary>
Expand Down
4 changes: 4 additions & 0 deletions src/Merge.Client/Accounting/Attachments/AttachmentsClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,10 @@ public async System.Threading.Tasks.Task<AccountingAttachment> RetrieveAsync(
{
_query["include_remote_data"] = JsonUtils.Serialize(request.IncludeRemoteData.Value);
}
if (request.IncludeShellData != null)
{
_query["include_shell_data"] = JsonUtils.Serialize(request.IncludeShellData.Value);
}
var response = await _client
.MakeRequestAsync(
new RawClient.JsonApiRequest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ public record AttachmentsRetrieveRequest
/// </summary>
public bool? IncludeRemoteData { get; set; }

/// <summary>
/// Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null).
/// </summary>
public bool? IncludeShellData { get; set; }

public override string ToString()
{
return JsonUtils.Serialize(this);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public record AuditTrailListRequest
public string? EndDate { get; set; }

/// <summary>
/// If included, will only include events with the given event type. Possible values include: `CREATED_REMOTE_PRODUCTION_API_KEY`, `DELETED_REMOTE_PRODUCTION_API_KEY`, `CREATED_TEST_API_KEY`, `DELETED_TEST_API_KEY`, `REGENERATED_PRODUCTION_API_KEY`, `INVITED_USER`, `TWO_FACTOR_AUTH_ENABLED`, `TWO_FACTOR_AUTH_DISABLED`, `DELETED_LINKED_ACCOUNT`, `CREATED_DESTINATION`, `DELETED_DESTINATION`, `CHANGED_DESTINATION`, `CHANGED_SCOPES`, `CHANGED_PERSONAL_INFORMATION`, `CHANGED_ORGANIZATION_SETTINGS`, `ENABLED_INTEGRATION`, `DISABLED_INTEGRATION`, `ENABLED_CATEGORY`, `DISABLED_CATEGORY`, `CHANGED_PASSWORD`, `RESET_PASSWORD`, `ENABLED_REDACT_UNMAPPED_DATA_FOR_ORGANIZATION`, `ENABLED_REDACT_UNMAPPED_DATA_FOR_LINKED_ACCOUNT`, `DISABLED_REDACT_UNMAPPED_DATA_FOR_ORGANIZATION`, `DISABLED_REDACT_UNMAPPED_DATA_FOR_LINKED_ACCOUNT`, `CREATED_INTEGRATION_WIDE_FIELD_MAPPING`, `CREATED_LINKED_ACCOUNT_FIELD_MAPPING`, `CHANGED_INTEGRATION_WIDE_FIELD_MAPPING`, `CHANGED_LINKED_ACCOUNT_FIELD_MAPPING`, `DELETED_INTEGRATION_WIDE_FIELD_MAPPING`, `DELETED_LINKED_ACCOUNT_FIELD_MAPPING`, `CREATED_LINKED_ACCOUNT_COMMON_MODEL_OVERRIDE`, `CHANGED_LINKED_ACCOUNT_COMMON_MODEL_OVERRIDE`, `DELETED_LINKED_ACCOUNT_COMMON_MODEL_OVERRIDE`, `FORCED_LINKED_ACCOUNT_RESYNC`, `MUTED_ISSUE`, `GENERATED_MAGIC_LINK`, `ENABLED_MERGE_WEBHOOK`, `DISABLED_MERGE_WEBHOOK`, `MERGE_WEBHOOK_TARGET_CHANGED`, `END_USER_CREDENTIALS_ACCESSED`
/// If included, will only include events with the given event type. Possible values include: `CREATED_REMOTE_PRODUCTION_API_KEY`, `DELETED_REMOTE_PRODUCTION_API_KEY`, `CREATED_TEST_API_KEY`, `DELETED_TEST_API_KEY`, `REGENERATED_PRODUCTION_API_KEY`, `INVITED_USER`, `TWO_FACTOR_AUTH_ENABLED`, `TWO_FACTOR_AUTH_DISABLED`, `DELETED_LINKED_ACCOUNT`, `DELETED_ALL_COMMON_MODELS_FOR_LINKED_ACCOUNT`, `CREATED_DESTINATION`, `DELETED_DESTINATION`, `CHANGED_DESTINATION`, `CHANGED_SCOPES`, `CHANGED_PERSONAL_INFORMATION`, `CHANGED_ORGANIZATION_SETTINGS`, `ENABLED_INTEGRATION`, `DISABLED_INTEGRATION`, `ENABLED_CATEGORY`, `DISABLED_CATEGORY`, `CHANGED_PASSWORD`, `RESET_PASSWORD`, `ENABLED_REDACT_UNMAPPED_DATA_FOR_ORGANIZATION`, `ENABLED_REDACT_UNMAPPED_DATA_FOR_LINKED_ACCOUNT`, `DISABLED_REDACT_UNMAPPED_DATA_FOR_ORGANIZATION`, `DISABLED_REDACT_UNMAPPED_DATA_FOR_LINKED_ACCOUNT`, `CREATED_INTEGRATION_WIDE_FIELD_MAPPING`, `CREATED_LINKED_ACCOUNT_FIELD_MAPPING`, `CHANGED_INTEGRATION_WIDE_FIELD_MAPPING`, `CHANGED_LINKED_ACCOUNT_FIELD_MAPPING`, `DELETED_INTEGRATION_WIDE_FIELD_MAPPING`, `DELETED_LINKED_ACCOUNT_FIELD_MAPPING`, `CREATED_LINKED_ACCOUNT_COMMON_MODEL_OVERRIDE`, `CHANGED_LINKED_ACCOUNT_COMMON_MODEL_OVERRIDE`, `DELETED_LINKED_ACCOUNT_COMMON_MODEL_OVERRIDE`, `FORCED_LINKED_ACCOUNT_RESYNC`, `MUTED_ISSUE`, `GENERATED_MAGIC_LINK`, `ENABLED_MERGE_WEBHOOK`, `DISABLED_MERGE_WEBHOOK`, `MERGE_WEBHOOK_TARGET_CHANGED`, `END_USER_CREDENTIALS_ACCESSED`
/// </summary>
public string? EventType { get; set; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,10 @@ public async System.Threading.Tasks.Task<BalanceSheet> RetrieveAsync(
{
_query["include_remote_data"] = JsonUtils.Serialize(request.IncludeRemoteData.Value);
}
if (request.IncludeShellData != null)
{
_query["include_shell_data"] = JsonUtils.Serialize(request.IncludeShellData.Value);
}
var response = await _client
.MakeRequestAsync(
new RawClient.JsonApiRequest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ public record BalanceSheetsRetrieveRequest
/// </summary>
public bool? IncludeRemoteData { get; set; }

/// <summary>
/// Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null).
/// </summary>
public bool? IncludeShellData { get; set; }

public override string ToString()
{
return JsonUtils.Serialize(this);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,10 @@ public async System.Threading.Tasks.Task<BankFeedAccount> RetrieveAsync(
{
_query["include_remote_data"] = JsonUtils.Serialize(request.IncludeRemoteData.Value);
}
if (request.IncludeShellData != null)
{
_query["include_shell_data"] = JsonUtils.Serialize(request.IncludeShellData.Value);
}
var response = await _client
.MakeRequestAsync(
new RawClient.JsonApiRequest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ public record BankFeedAccountsRetrieveRequest
/// </summary>
public bool? IncludeRemoteData { get; set; }

/// <summary>
/// Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null).
/// </summary>
public bool? IncludeShellData { get; set; }

public override string ToString()
{
return JsonUtils.Serialize(this);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,10 @@ public async System.Threading.Tasks.Task<BankFeedTransaction> RetrieveAsync(
{
_query["include_remote_data"] = JsonUtils.Serialize(request.IncludeRemoteData.Value);
}
if (request.IncludeShellData != null)
{
_query["include_shell_data"] = JsonUtils.Serialize(request.IncludeShellData.Value);
}
var response = await _client
.MakeRequestAsync(
new RawClient.JsonApiRequest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ public record BankFeedTransactionsRetrieveRequest
/// </summary>
public bool? IncludeRemoteData { get; set; }

/// <summary>
/// Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null).
/// </summary>
public bool? IncludeShellData { get; set; }

public override string ToString()
{
return JsonUtils.Serialize(this);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,10 @@ public async System.Threading.Tasks.Task<CashFlowStatement> RetrieveAsync(
{
_query["include_remote_data"] = JsonUtils.Serialize(request.IncludeRemoteData.Value);
}
if (request.IncludeShellData != null)
{
_query["include_shell_data"] = JsonUtils.Serialize(request.IncludeShellData.Value);
}
var response = await _client
.MakeRequestAsync(
new RawClient.JsonApiRequest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ public record CashFlowStatementsRetrieveRequest
/// </summary>
public bool? IncludeRemoteData { get; set; }

/// <summary>
/// Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null).
/// </summary>
public bool? IncludeShellData { get; set; }

public override string ToString()
{
return JsonUtils.Serialize(this);
Expand Down
4 changes: 4 additions & 0 deletions src/Merge.Client/Accounting/CompanyInfo/CompanyInfoClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,10 @@ public async System.Threading.Tasks.Task<CompanyInfo> RetrieveAsync(
{
_query["include_remote_data"] = JsonUtils.Serialize(request.IncludeRemoteData.Value);
}
if (request.IncludeShellData != null)
{
_query["include_shell_data"] = JsonUtils.Serialize(request.IncludeShellData.Value);
}
var response = await _client
.MakeRequestAsync(
new RawClient.JsonApiRequest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ public record CompanyInfoRetrieveRequest
/// </summary>
public bool? IncludeRemoteData { get; set; }

/// <summary>
/// Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null).
/// </summary>
public bool? IncludeShellData { get; set; }

public override string ToString()
{
return JsonUtils.Serialize(this);
Expand Down
4 changes: 4 additions & 0 deletions src/Merge.Client/Accounting/Contacts/ContactsClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,10 @@ public async System.Threading.Tasks.Task<Contact> RetrieveAsync(
request.IncludeRemoteFields.Value
);
}
if (request.IncludeShellData != null)
{
_query["include_shell_data"] = JsonUtils.Serialize(request.IncludeShellData.Value);
}
if (request.RemoteFields != null)
{
_query["remote_fields"] = request.RemoteFields.ToString();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ public record ContactsRetrieveRequest
/// </summary>
public bool? IncludeRemoteFields { get; set; }

/// <summary>
/// Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null).
/// </summary>
public bool? IncludeShellData { get; set; }

/// <summary>
/// Deprecated. Use show_enum_origins.
/// </summary>
Expand Down
4 changes: 4 additions & 0 deletions src/Merge.Client/Accounting/CreditNotes/CreditNotesClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,10 @@ public async System.Threading.Tasks.Task<CreditNote> RetrieveAsync(
{
_query["include_remote_data"] = JsonUtils.Serialize(request.IncludeRemoteData.Value);
}
if (request.IncludeShellData != null)
{
_query["include_shell_data"] = JsonUtils.Serialize(request.IncludeShellData.Value);
}
if (request.RemoteFields != null)
{
_query["remote_fields"] = request.RemoteFields.Value.Stringify();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ public record CreditNotesRetrieveRequest
/// </summary>
public bool? IncludeRemoteData { get; set; }

/// <summary>
/// Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null).
/// </summary>
public bool? IncludeShellData { get; set; }

/// <summary>
/// Deprecated. Use show_enum_origins.
/// </summary>
Expand Down
4 changes: 4 additions & 0 deletions src/Merge.Client/Accounting/Employees/EmployeesClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,10 @@ public async System.Threading.Tasks.Task<Employee> RetrieveAsync(
{
_query["include_remote_data"] = JsonUtils.Serialize(request.IncludeRemoteData.Value);
}
if (request.IncludeShellData != null)
{
_query["include_shell_data"] = JsonUtils.Serialize(request.IncludeShellData.Value);
}
var response = await _client
.MakeRequestAsync(
new RawClient.JsonApiRequest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ public record EmployeesRetrieveRequest
/// </summary>
public bool? IncludeRemoteData { get; set; }

/// <summary>
/// Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null).
/// </summary>
public bool? IncludeShellData { get; set; }

public override string ToString()
{
return JsonUtils.Serialize(this);
Expand Down
4 changes: 4 additions & 0 deletions src/Merge.Client/Accounting/Expenses/ExpensesClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,10 @@ public async System.Threading.Tasks.Task<Expense> RetrieveAsync(
request.IncludeRemoteFields.Value
);
}
if (request.IncludeShellData != null)
{
_query["include_shell_data"] = JsonUtils.Serialize(request.IncludeShellData.Value);
}
var response = await _client
.MakeRequestAsync(
new RawClient.JsonApiRequest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ public record ExpensesRetrieveRequest
/// </summary>
public bool? IncludeRemoteFields { get; set; }

/// <summary>
/// Whether to include shell records. Shell records are empty records (they may contain some metadata but all other fields are null).
/// </summary>
public bool? IncludeShellData { get; set; }

public override string ToString()
{
return JsonUtils.Serialize(this);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ internal ForceResyncClient(RawClient client)
}

/// <summary>
/// Force re-sync of all models. This is available for all organizations via the dashboard. Force re-sync is also available programmatically via API for monthly, quarterly, and highest sync frequency customers on the Professional or Enterprise plans. Doing so will consume a sync credit for the relevant linked account.
/// Force re-sync of all models. This endpoint is available for monthly, quarterly, and highest sync frequency customers on the Professional or Enterprise plans. Doing so will consume a sync credit for the relevant linked account. Force re-syncs can also be triggered manually in the Merge Dashboard and is available for all customers.
/// </summary>
/// <example>
/// <code>
Expand Down
Loading
Loading