- TODO LIST
- Version
- Authentication
- Access Token (Oauth - Username/Password)
- API Key (Machine 2 Machine)
- JWT (JSON Web Token)
- Event Subscriptions
- Resellers
- Domains
- Phone Numbers
- Users
- Devices
- Phones/Macs
- Sites
- Call Center
- Answer Rules
- Call Blocking
- Auto Attendant
- Media
- Voicemail
- Greetings
- Read Greetings for User
- Read Specific Greeting for User
- Delete Specific Greeting for User
- Create a new Greeting from TTS
- Update Greeting with TTS script
- Create a new Greeting from Upload (JSON + Base64 File)
- Update Greeting from Upload (JSON + Base64 File)
- Create a new Greeting from Upload (Multipart/Mixed Post)
- Update Greeting from Upload (Multipart/Mixed Post)
- Music on Hold
- Domain
- Read MOH for Domain
- Create a new MOH for Domain from TTS
- Update MOH for Domain from TTS
- Create a new MOH for Domain from Upload (JSON + Base64 File)
- Update MOH for Domain from Upload (JSON + Base64 File)
- Create a new MOH for Domain from Upload (Multipart/Mixed Post)
- Update MOH for Domain from Upload (Multipart/Mixed Post)
- Delete MOH for Domain
- User
- Read MOH for User
- Create a new MOH for Domain from TTS
- Create a new MOH for User from Upload (JSON + Base64 File)
- Update MOH for User from Upload (JSON + Base64 File)
- Update MOH for Domain from TTS
- Create a new MOH for User from Upload (Multipart/Mixed Post)
- Update a MOH for User from Upload (Multipart/Mixed Post)
- Delete MOH for User
- Domain
- Hold Messages
- Text to Speech
- CDR (Call History)
- Transcriptions & Sentiment
- Call Traces & Cradle to Grave
- Calls (live/active calls)
- Contacts
- Addresses
- Get Addresses for DomainGET
- Validate AddressPOST
- Create Address for DomainPOST
- Update Address for DomainPUT
- Update Address for UserPUT
- Update Address EndpointPUT
- Create Address for UserPOST
- Delete Address For UserDELETE
- Delete Address EndpointDELETE
- Delete Address For DomainDELETE
- Create Address EndpointPOST
- Get Address Endpoints for a DomainGET
- Get Addresses Count for DomainGET
- Get Addresses for UserGET
- Get Address Using Address IDGET
- Voicemail Reminders
- Dialrule
- Messages
- Get Messagesessions for Domain
- Start a new Message Session
- Get Messagesessions for User
- Get Messages for Messagesession
- Send a message (Chat)
- Send a message (Group Chat)
- Send a message (Media Chat)
- Send a message (SMS)
- Send a message (Group SMS)
- Send a message (MMS)
- Update Messagesession (Participants)
- Update Messagesession (Session Name)
- Update Messagesession (Leave)
- Delete Messagesession
- SMS Numbers
- Recordings
- Email
- Connections
- Routes
- Meetings
- Event Logs
- Iotum
- Read Iotum Video Domain Resellers
- Read Iotum Video Host
- Read All Iotum Video Hosts in a Domain
- Read Iotum Video Host Conferences
- Read Iotum Video Host Contacts
- Read Iotum Video Company
- Read Iotum Video Company Products
- Read Iotum Video Available Products
- Create a Host
- Create Host Contacts
- Create Iotum Video Subscription
- Update Domain's Iotum Company
- Update Domain's Iotum Subscriptions
- Update User's Iotum Host
- Delete Iotum Video Subscription
- Delete a Host
- Create Iotum Video Company
- Create a Ad-hoc Conference
- Delete a Video Company
- Create a Meeting with Id
- Create a Meeting
- Read Meeting
- Count Domains Meetings
- Count Meeting
- Register Meeting
- Update a Meeting
- Delete a Meeting
- Request a Meeting ID
- Read Meetings for User
- Backup & Restore
- Configs
- Images
- Templates
- Timeframes
- Domain (Shared)
- User
- Holiday Information
- Firebase
- SSL Certificates
Update Address Endpoint
PUT
/domains/{domain}/addresses/endpoints/{endpoint}
Last modified:2023-12-21 20:52:14
OperationId:UpdateAddressEndpoint
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
domain
stringÂ
required
Example:
sampleDomain
endpoint
stringÂ
required
Example:
8585551234
Body Params application/json
address-name
stringÂ
required
caller-name
stringÂ
required
address-line-1
stringÂ
optional
address-line-2
string  | nullÂ
optional
address-city
stringÂ
optional
address-state-province-abbreviation
stringÂ
optional
address-postal-code
stringÂ
optional
address-country-abbreviation
stringÂ
optional
address-location-description
string  | nullÂ
optional
address-formatted-pidflo
object  | nullÂ
optional
carrier
string  | nullÂ
optional
location-id
string  | nullÂ
optional
Example
{
"address-name": "WeWork Office",
"caller-id-number": "WeWork Secretary UPDATED",
"address-line-1": "8910 UNIVERSITY CENTER LN",
"address-line-2": "STE 404 UPDATED",
"address-city": "San Diego",
"address-state-province-abbreviation": "CA",
"address-postal-code": "92122-1025",
"address-country-abbreviation": "US",
"address-location-description": "front left desk",
"address-provisioned-carrier-name": "bandwidth",
"address-formatted-pidflo": {
"HouseNumber": 8910,
"StreetName": "UNIVERSITY CENTER",
"StreetSuffix": "LN",
"City": "SAN DIEGO",
"StateCode": "CA",
"Zip": 92122,
"PlusFour": 1012,
"County": [],
"Country": "US",
"AddressType": "E911",
"LocationId": "LOCATION ID",
"ValidationStatus": "VALID",
"Adjusted": "true"
},
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://awqacore01.crexendocloud.com/ns-api/v2/domains/sampleDomain/addresses/endpoints/8585551234' \
--header 'Content-Type: application/json' \
--data-raw '{
"address-name": "WeWork Office",
"caller-id-number": "WeWork Secretary UPDATED",
"address-line-1": "8910 UNIVERSITY CENTER LN",
"address-line-2": "STE 404 UPDATED",
"address-city": "San Diego",
"address-state-province-abbreviation": "CA",
"address-postal-code": "92122-1025",
"address-country-abbreviation": "US",
"address-location-description": "front left desk",
"address-provisioned-carrier-name": "bandwidth",
"address-formatted-pidflo": {
"HouseNumber": 8910,
"StreetName": "UNIVERSITY CENTER",
"StreetSuffix": "LN",
"City": "SAN DIEGO",
"StateCode": "CA",
"Zip": 92122,
"PlusFour": 1012,
"County": [],
"Country": "US",
"AddressType": "E911",
"LocationId": "LOCATION ID",
"ValidationStatus": "VALID",
"Adjusted": "true"
},
}'
Responses
🟢202Accepted
application/json
Body
code
integerÂ
required
message
stringÂ
required
Example
{
"code": 202,
"message": "Accepted"
}
🟠404Record not found
🟠400Bad Request
🟠401Authentication Required
Modified at 2023-12-21 20:52:14