Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 524 Bytes

File metadata and controls

23 lines (17 loc) · 524 Bytes

Integrating the amoCRM Provider

Example

services.AddAuthentication(options => /* Auth configuration */)
        .AddAmoCrm(options =>
        {
            options.Account = "my-account";
            options.ClientId = "client-id";
            options.ClientSecret = "client-secret";
        });

Required Additional Settings

Property Name Property Type Description Default Value
Account string? The amoCRM account. example

Optional Settings

None.