List Fabric Addresses
GET/addresses
A list of Fabric Addresses. This endpoint uses the bearer token authentication method with the SAT (Subscriber Access Token) wich can be generated using the Create Subscriber Token endpoint.
Request
Responses
- 200
- 401
- 404
The request has succeeded.
- application/json
- Schema
- Example (from schema)
Schema
Array [
- AudioChannel
- MessagingChannel
- VideoChannel
]
data
object[]
required
Universal Unique Identifier.
Name of the Fabric Address.
justice-league
Display name of the Fabric Address.
Justice League
DisplayTypes
Possible values: [app
, room
, call
, subscriber
]
Cover url of the Fabric Address.
https://coverurl.com
Preview url of the Fabric Address.
https://previewurl.com
Locks the Fabric Address. This is used to prevent the Fabric Address from accepting calls.
true
channel
object
required
oneOf
Audio Channel of Fabric Address
/external/resource_name?channel=audio
Messaging Channel of Fabric Address
/external/resource_name?channel=messaging
Video Channel of Fabric Address
/external/resource_name?channel=video
Fabric Address Creation Date.
2024-05-06T12:20-12Z
links
object
required
Link of the current page
https://{space_name}.signalwire.com/api/fabric/addresses?page_number=0&page_size=50
Link to the first page
https://{space_name}.signalwire.com/api/fabric/addresses?page_number=0&page_size=50
Link to the next page
https://{space_name}.signalwire.com/api/fabric/addresses?page_number=1&page_size=50&page_token=PAbff61159-faab-48b3-959a-3021a8f5beca
{
"data": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "justice-league",
"display_name": "Justice League",
"type": "app",
"cover_url": "https://coverurl.com",
"preview_url": "https://previewurl.com",
"locked": true,
"channel": {
"audio": "/external/resource_name?channel=audio"
},
"created_at": "2024-05-06T12:20-12Z"
}
],
"links": {
"self": "https://{space_name}.signalwire.com/api/fabric/addresses?page_number=0&page_size=50",
"first": "https://{space_name}.signalwire.com/api/fabric/addresses?page_number=0&page_size=50",
"next": "https://{space_name}.signalwire.com/api/fabric/addresses?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
]