Skip to content

Latest commit

 

History

History
46 lines (29 loc) · 2.32 KB

File metadata and controls

46 lines (29 loc) · 2.32 KB

Miscellaneous

(Miscellaneous)

Overview

Available Operations

GetPublicInterstitial

The Clerk interstitial endpoint serves an html page that loads clerk.js in order to check the user's authentication state. It is used by Clerk SDKs when the user's authentication state cannot be immediately determined.

Example Usage

using Clerk.BackendAPI;
using Clerk.BackendAPI.Models.Operations;

var sdk = new ClerkBackendApi();

GetPublicInterstitialRequest req = new GetPublicInterstitialRequest() {
    FrontendApiQueryParameter1 = "pub_1a2b3c4d",
};

var res = await sdk.Miscellaneous.GetPublicInterstitialAsync(req);

// handle response

Parameters

Parameter Type Required Description
request GetPublicInterstitialRequest ✔️ The request object to use for the request.

Response

GetPublicInterstitialResponse

Errors

Error Type Status Code Content Type
Clerk.BackendAPI.Models.Errors.SDKError 4XX, 5XX */*