Devices
Add BYOD Devices
Adds multiple BYOD (customer provided) devices to an account.
post/restapi/v2/accounts/{accountId}/devices/bulk-add
Path parameters
accountIdstring required
Internal identifier of the RingCentral account (can be set to "~" to indicate that the account associated with current authorization session should be used)
Request body
Example request
{
"records": [
{
"costCenterId": "224149",
"extension": {
"id": "12345"
},
"emergency": {
"address": {
"street": "20 Davis Dr",
"city": "Belmont",
"state": "CA",
"zip": "94002",
"country": "US"
}
},
"phoneInfo": {
"tollType": "Toll"
}
}
]
}Response
Successful response
Example response
{
"results": [
{
"successful": true,
"id": "787878",
"extension": {
"id": "12345"
},
"phoneNumber": "+16501234567"
}
]
}