My new problem is: I would like don't display some fields in the object, example:
My Json request is this:
{
"id": "long",
"oneClick": "boolean",
"ddd": "string",
"email": "string",
"name": "string",
"telephone": "string",
"password": "string"
}
but I would want it is this:
{
"oneClick": "boolean",
"ddd": "string",
"email": "string",
"name": "string",
"telephone": "string",
"password": "string"
}
I call a POST action and id field is populated by my application.
Can you help me?
My new problem is: I would like don't display some fields in the object, example:
My Json request is this:
{
"id": "long",
"oneClick": "boolean",
"ddd": "string",
"email": "string",
"name": "string",
"telephone": "string",
"password": "string"
}
but I would want it is this:
{
"oneClick": "boolean",
"ddd": "string",
"email": "string",
"name": "string",
"telephone": "string",
"password": "string"
}
I call a POST action and id field is populated by my application.
Can you help me?