PUT Phone
Update Phone object
Request Information
URI Parameters
None.
Body Parameters
Phone object to update
Phone| Name | Description | Type | Additional information |
|---|---|---|---|
| PhoneID | integer |
None. |
|
| VIPID | globally unique identifier |
None. |
|
| PhoneNumber | string |
None. |
|
| CountryCode | string |
None. |
|
| IsActive | boolean |
None. |
|
| DateCreated | date |
None. |
|
| DateModified | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"phoneID": 1,
"vipid": "27443929-dc29-4e3d-b226-3c75a784eded",
"phoneNumber": "sample string 2",
"countryCode": "sample string 3",
"isActive": true,
"dateCreated": "2026-04-21T06:51:57.6565208-04:00",
"dateModified": "2026-04-21T06:51:57.6565208-04:00"
}
text/html
Sample:
{"phoneID":1,"vipid":"27443929-dc29-4e3d-b226-3c75a784eded","phoneNumber":"sample string 2","countryCode":"sample string 3","isActive":true,"dateCreated":"2026-04-21T06:51:57.6565208-04:00","dateModified":"2026-04-21T06:51:57.6565208-04:00"}
application/xml, text/xml
Sample:
<Phone xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ContactService.Models"> <CountryCode>sample string 3</CountryCode> <DateCreated>2026-04-21T06:51:57.6565208-04:00</DateCreated> <DateModified>2026-04-21T06:51:57.6565208-04:00</DateModified> <IsActive>true</IsActive> <PhoneID>1</PhoneID> <PhoneNumber>sample string 2</PhoneNumber> <VIPID>27443929-dc29-4e3d-b226-3c75a784eded</VIPID> </Phone>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
bool representing success or failure
booleanResponse Formats
application/json, text/json, text/html
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>