(ManagementV1)
using HathoraCloud;
using HathoraCloud.Models.Shared;
var sdk = new HathoraCloudSDK(appId: "app-af469a92-5b45-4565-b3c4-b79878de67d2");
VerificationEmailRequest req = new VerificationEmailRequest() {
UserId = "<value>",
};
using(var res = await sdk.ManagementV1.SendVerificationEmailAsync(req))
{
// handle response
}
Parameter | Type | Required | Description |
---|---|---|---|
request |
VerificationEmailRequest | ✔️ | The request object to use for the request. |
Error Object | Status Code | Content Type |
---|---|---|
HathoraCloud.Models.Errors.ApiError | 401,429,500 | application/json |
HathoraCloud.Models.Errors.SDKException | 4xx-5xx | / |