Sync service conferencing

Re-apply the service's default conferencing to all of its providers, in alignment with the current default user mappings on the connected account. Use this after establishing or updating user mappings on the connection to push them onto the service's providers, without re-declaring the default.

Providers without a default user mapping are skipped (reported in the response, not an error).

Returns a 404 when the service does not exist or is not accessible to the current actor, and a 422 when the service has no default conferencing configured.

POST
/v1/services/{service_id}/conferencing/sync

Authorization

authorization
AuthorizationBearer <token>

In: header

Path Parameters

service_id*string

The service's unique identifier

Match^srv_\w{12}$

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/v1/services/srv_abcdef123456/conferencing/sync"
{  "data": {    "configured": [      {        "provider_id": "prov_d025a96ac0c6"      }    ],    "skipped": [      {        "provider_id": "prov_a1b2c3d4e5f6",        "reason": "no_user_mapping"      }    ]  }}