diff --git a/src/ReC.Client/Api/EndpointAuthApi.cs b/src/ReC.Client/Api/EndpointAuthApi.cs
new file mode 100644
index 0000000..d93cf39
--- /dev/null
+++ b/src/ReC.Client/Api/EndpointAuthApi.cs
@@ -0,0 +1,60 @@
+using System.Net.Http;
+using System.Threading;
+using System.Threading.Tasks;
+
+namespace ReC.Client.Api
+{
+ ///
+ /// Provides access to endpoint authentication endpoints.
+ ///
+ public class EndpointAuthApi
+ {
+ private readonly HttpClient _http;
+
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ /// The HTTP client used for requests.
+ public EndpointAuthApi(HttpClient http)
+ {
+ _http = http;
+ }
+
+ ///
+ /// Creates endpoint authentication configuration.
+ ///
+ /// The payload type.
+ /// The payload to send.
+ /// A token to cancel the operation.
+ /// The HTTP response message.
+ public Task CreateEndpointAuthAsync(T procedure, CancellationToken cancel = default)
+ => _http.PostAsync("api/EndpointAuth", ReCClientHelpers.ToJsonContent(procedure), cancel);
+
+ ///
+ /// Updates endpoint authentication configuration.
+ ///
+ /// The payload type.
+ /// The authentication identifier.
+ /// The payload to send.
+ /// A token to cancel the operation.
+ /// The HTTP response message.
+ public Task UpdateEndpointAuthAsync(long id, T procedure, CancellationToken cancel = default)
+ => _http.PutAsync($"api/EndpointAuth/{id}", ReCClientHelpers.ToJsonContent(procedure), cancel);
+
+ ///
+ /// Deletes endpoint authentications.
+ ///
+ /// The payload type containing identifiers.
+ /// The payload to send.
+ /// A token to cancel the operation.
+ /// The HTTP response message.
+ public Task DeleteEndpointAuthAsync(T procedure, CancellationToken cancel = default)
+ {
+ var request = new HttpRequestMessage(HttpMethod.Delete, "api/EndpointAuth")
+ {
+ Content = ReCClientHelpers.ToJsonContent(procedure)
+ };
+ return _http.SendAsync(request, cancel);
+ }
+ }
+}