PUT api/v2/Users/{id}/UserContactItem

Upserts a Contact Information to an existing User. Returns Success/Error along with the PK of the Contact Info The PK of the existing User that you want to upsert the Contact Item fromRequired: The Contact Info Item you want to upsert

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

UpsertContactItemViewModel
NameDescriptionTypeAdditional information
UserId

Required: The PK of the existing User that you want to add or update the Contact Item to.

globally unique identifier

None.

ContactSubType

Required: The type of contact information being added or updated - Retrieve possible values from /ContactItem/GetAllTypes

globally unique identifier

None.

Value

Required: Represents the Contact Item value - an email address, a phone number

string

None.

IsDefault

Required: Specifies if the Contact Item is the default method of contact for that Contact Type (default email, default phone, etc.)

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "UserId": "d499e029-2a89-461e-8bde-986567b2054e",
  "ContactSubType": "994ade20-bd03-43de-9a81-28967eea0130",
  "Value": "sample string 3",
  "IsDefault": true
}

application/xml, text/xml

Sample:
<UpsertContactItemViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIWebRole.Controllers">
  <ContactSubType>994ade20-bd03-43de-9a81-28967eea0130</ContactSubType>
  <IsDefault>true</IsDefault>
  <UserId>d499e029-2a89-461e-8bde-986567b2054e</UserId>
  <Value>sample string 3</Value>
</UpsertContactItemViewModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResultWithGuid
NameDescriptionTypeAdditional information
Value

Represents the PK value that was created as a result of an add

globally unique identifier

None.

ResultCode

Represents the result code

integer

None.

Description

Represents a description of the result code

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Value": "4c6a03b1-7e87-4aea-ab96-5cce26cf72c4",
  "ResultCode": 2,
  "Description": "sample string 3"
}

application/xml, text/xml

Sample:
<ResultWithGuid xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIWebRole.Controllers">
  <Description>sample string 3</Description>
  <HttpStatusCode>Continue</HttpStatusCode>
  <ResultCode>2</ResultCode>
  <Value>4c6a03b1-7e87-4aea-ab96-5cce26cf72c4</Value>
</ResultWithGuid>