Skip to main content

ServiceConferencingResponse

Response schema for configuring a service's conferencing across all providers

data objectrequired

The outcome of configuring a service's conferencing across all of its providers, listing which providers were configured and which were skipped.

configured object[]required
  • Array [
  • provider_idstringrequired

    Possible values: Value must match regular expression ^prov_\w{12}$

  • ]
  • skipped object[]required
  • Array [
  • provider_idstringrequired

    Possible values: Value must match regular expression ^prov_\w{12}$

    reasonstringrequired

    Why the provider was skipped.

    Possible values: [no_user_mapping]

  • ]
  • ServiceConferencingResponse
    {
    "data": {
    "configured": [
    {
    "provider_id": "prov_d025a96ac0c6"
    }
    ],
    "skipped": [
    {
    "provider_id": "prov_a1b2c3d4e5f6",
    "reason": "no_user_mapping"
    }
    ]
    }
    }