POST api/User/AddUserEmail

Request Information

URI Parameters

None.

Body Parameters

UserTiedEmail
NameDescriptionTypeAdditional information
Id

integer

None.

UserId

globally unique identifier

None.

Email

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "UserId": "2064bb23-e74a-4255-ab46-c77b22278da0",
  "Email": "sample string 3"
}

Response Information

Resource Description

ResponseBase
NameDescriptionTypeAdditional information
HasErrors

boolean

None.

HasValidationErrors

boolean

None.

Messages

Collection of ResponseMessage

None.

Response Formats

application/json, text/json

Sample:
{
  "HasErrors": false,
  "HasValidationErrors": false,
  "Messages": [
    {
      "ExceptionThrown": {
        "ClassName": "System.Exception",
        "Message": null,
        "Data": null,
        "InnerException": null,
        "HelpURL": "sample string 1",
        "StackTraceString": null,
        "RemoteStackTraceString": null,
        "RemoteStackIndex": 0,
        "ExceptionMethod": null,
        "HResult": 3,
        "Source": "sample string 2",
        "WatsonBuckets": null
      },
      "ExceptionMessage": "Exception of type 'System.Exception' was thrown.",
      "ExceptionStackTrace": null,
      "ResponseCode": "sample string 3",
      "Level": 0,
      "Message": "sample string 4",
      "Id": 5
    },
    {
      "ExceptionThrown": {
        "ClassName": "System.Exception",
        "Message": null,
        "Data": null,
        "InnerException": null,
        "HelpURL": "sample string 1",
        "StackTraceString": null,
        "RemoteStackTraceString": null,
        "RemoteStackIndex": 0,
        "ExceptionMethod": null,
        "HResult": 3,
        "Source": "sample string 2",
        "WatsonBuckets": null
      },
      "ExceptionMessage": "Exception of type 'System.Exception' was thrown.",
      "ExceptionStackTrace": null,
      "ResponseCode": "sample string 3",
      "Level": 0,
      "Message": "sample string 4",
      "Id": 5
    }
  ]
}