List Subscriber Addresses
GET/resources/subscribers/:id/addresses
List Subscriber Addresses
Request
Path Parameters
Unique ID of a Subscriber Address.
Responses
- 200
- 401
- 404
The request has succeeded.
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
]
]
data
object[]
required
Universal Unique Identifier.
Universal Unique Identifier.
Name of the Subscriber Address.
reception
Display Name of the Subscriber Address.
Reception
Type of the Subscriber Address.
room
Cover URL of the Subscriber Address.
https://example.com/cover.webp
Preview URL of the Subscriber Address.
https://example.com/preview.webp
channels
object
required
Video Channel of the Subscriber Address.
/public/reception?channel=video
Audio Channel of the Subscriber Address.
/public/reception?channel=audio
Messaging Channel of the Subscriber Address.
/public/reception?channel=messaging
links
object
required
Link of the current page
https://{space_name}.signalwire.com/api/fabric/resources/external_swml_handlers?page_number=0&page_size=50
Link to the first page
https://{space_name}.signalwire.com/api/fabric/resources/external_swml_handlers?page_number=0&page_size=50
Link to the next page
https://{space_name}.signalwire.com/api/fabric/resources/external_swml_handlers?page_number=1&page_size=50&page_token=PAbff61159-faab-48b3-959a-3021a8f5beca
[
{
"data": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"resource_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "reception",
"display_name": "Reception",
"type": "room",
"cover_url": "https://example.com/cover.webp",
"preview_url": "https://example.com/preview.webp",
"channels": {
"video": "/public/reception?channel=video",
"audio": "/public/reception?channel=audio",
"messaging": "/public/reception?channel=messaging"
}
}
],
"links": {
"self": "https://{space_name}.signalwire.com/api/fabric/resources/external_swml_handlers?page_number=0&page_size=50",
"first": "https://{space_name}.signalwire.com/api/fabric/resources/external_swml_handlers?page_number=0&page_size=50",
"next": "https://{space_name}.signalwire.com/api/fabric/resources/external_swml_handlers?page_number=1&page_size=50&page_token=PAbff61159-faab-48b3-959a-3021a8f5beca"
}
}
]
Access is unauthorized.
- application/json
- Schema
Schema
string
Possible values: [Unauthorized
]
The server cannot find the requested resource.
- application/json
- Schema
Schema
string
Possible values: [Not Found
]