Skip to content

Latest commit

 

History

History
49 lines (33 loc) · 2.78 KB

README.md

File metadata and controls

49 lines (33 loc) · 2.78 KB

SignUps

(SignUps)

Overview

Available Operations

Update

Update the sign-up with the given ID

Example Usage

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

var sdk = new ClerkBackendApi(bearerAuth: "<YOUR_BEARER_TOKEN_HERE>");

var res = await sdk.SignUps.UpdateAsync(
    id: "signup_1234567890abcdef",
    requestBody: new UpdateSignUpRequestBody() {
        ExternalId = "ext_id_7890abcdef123456",
    }
);

// handle response

Parameters

Parameter Type Required Description Example
Id string ✔️ The ID of the sign-up to update signup_1234567890abcdef
RequestBody UpdateSignUpRequestBody ✔️ N/A

Response

UpdateSignUpResponse

Errors

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