PUT api/providers/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

provider
NameDescriptionTypeAdditional information
providerId

integer

None.

email

string

None.

phone

string

None.

contactName

string

None.

Request Formats

application/json, text/json

Sample:
{
  "providerId": 1,
  "email": "sample string 2",
  "phone": "sample string 3",
  "contactName": "sample string 4"
}

application/xml, text/xml

Sample:
<provider xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/mustCnoAuth">
  <contactName>sample string 4</contactName>
  <email>sample string 2</email>
  <phone>sample string 3</phone>
  <providerId>1</providerId>
</provider>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.