InsionInsion
C#

Create an appeal

Submit an appeal for a suspended user

var response = await client.CreateAnAppealAsync(new PostApiV1UsersUserIdCreateAppealRequest
{
    UserId = "usr_123", Text = "Please review this decision.",
});

CreateAnAppealAsync(PostApiV1UsersUserIdCreateAppealRequest, RequestOptions?, CancellationToken) requires the Insion UserId and appeal Text. Appeals must be enabled for the organization; the result is CreateAppealResponse.

PropertyRequiredDescription
UserIdYesInsion ID of the suspended user.
TextYesAppeal message submitted for review.

Obtain UserId from user ingestion, retrieval, or listing. Save the response data if your support workflow needs to associate the appeal with a ticket or user-facing status.