Get Fabric Address
GET/addresses/:id
Returns a Fabric Address by ID. 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
Path Parameters
Unique ID of a FabricAddress.
Responses
- 200
- 401
- 404
The request has succeeded.
- application/json
- Schema
- Example (from schema)
Schema
- AudioChannel
- MessagingChannel
- VideoChannel
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
{
"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"
}
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
]