Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

541
Views
Deserialize a JSON string integer to an Enum in ASP.NET Core

I'm creating an ASP.NET Core API and my users have a role, like so

class User
{
    public Guid Id {get; set;}

    public string Email {get; set;}

    public Role Role {get; set;}
}

enum Role : byte
{
    User = 0,
    Administrator = 1
}

The problem now is, that my user CreateOrUpdate endpoint is getting this JSON data

{
    "id": "2abe50d6-4c81-4ace-ad95-c8182d4384a3",
    "email": "someEmail@example.org",
    "role": "0"
}

Here's the problematic endpoint declaration

public User CreateOrUpdate([FromBody] User user)
{
    // ...
}

And it fails to deserialize this, and as such returns HTTP 400 Bad Request. But, if I remove the quotation marks around the 0 of the role property, it works like a charm.

So, how do I get ASP.NET Core to deserialize the "0" to a 0 and as such to the enum variant User?

over 4 years ago · Santiago Trujillo
2 answers
Answer question

0

From How to customize property names and values with System.Text.Json - Enum as string.

By default, System.Text.Json convert enum from integer, but in you case "0" is a string. You need specify a converter to convert enum from string like :

public void ConfigureServices(IServiceCollection services)
{

    services.AddControllers().AddJsonOptions(o =>
    {
        o.JsonSerializerOptions.PropertyNamingPolicy = JsonNamingPolicy.CamelCase;
        o.JsonSerializerOptions.Converters.Add(new JsonStringEnumConverter());
    });
}
over 4 years ago · Santiago Trujillo Report

0

You have to write your own converter. Depending, if you're using either Newtonsoft or Microsoft.Json.Text the implementation are more or less the same, but you have to take care to use the classes and properties out of the right namespace and do not mix them.

Depending on your usage you can take a look into the original code of the StringEnumConverter either at Microsoft or Newtonsoft and write your own based on that.

In your class you can then apply this converter by using the corresponding attribute to the specific attribute.

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!