For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Log inSign up
Support
GuidesReference
GuidesReference
    • Core
      • Overview
    • Agents
      • Overview
      • AgentBase
      • AgentServer
      • BedrockAgent
      • CLI Tools
      • Configuration
      • ContextBuilder
      • DataMap
      • FunctionResult
      • Helper Functions
      • LiveWire
      • MCP Gateway
      • PomBuilder
      • Prefabs
      • Search
      • SkillBase
      • Skills
      • SWAIGFunction
      • SWMLBuilder
      • SWMLService
      • WebService
    • RELAY
      • Overview
      • Actions
      • Call
      • Constants
      • Events
      • Message
      • RelayClient
      • RelayError
    • REST Client
      • Overview
      • Addresses
      • Calling
      • Chat
      • Compat
      • Datasphere
      • Fabric
        • Addresses
        • AI Agents
        • Call Flows
        • Conference Rooms
        • cXML Applications
        • cXML Scripts
        • cXML Webhooks
        • FreeSWITCH Connectors
        • RELAY Applications
        • Resources
        • SIP Endpoints
        • SIP Gateways
        • Subscribers
          • create
          • create_sip_endpoint
          • delete
          • delete_sip_endpoint
          • get
          • get_sip_endpoint
          • list
          • list_addresses
          • list_sip_endpoints
          • update
          • update_sip_endpoint
        • SWML Scripts
        • SWML Webhooks
        • Tokens
      • Imported Numbers
      • Logs
      • Lookup
      • MFA
      • Number Groups
      • Phone Numbers
      • Project
      • PubSub
      • Queues
      • Recordings
      • Registry
      • RestClient
      • Short Codes
      • SignalWireRestError
      • SIP Profile
      • Verified Callers
      • Video
LogoLogoSignalWire Docs
Log inSign up
Support
On this page
  • Methods
REST ClientFabric

Subscribers

|View as Markdown|Open in Claude|
Was this page helpful?
Edit this page
Previous

create

Next
Built with

Manage subscriber resources. Extends standard CRUD (PUT updates) with address listing and SIP endpoint management.

Access via client.fabric.subscribers on a RestClient instance.

1from signalwire.rest import RestClient
2
3client = RestClient(
4 project="your-project-id",
5 token="your-api-token",
6 host="your-space.signalwire.com",
7)
8
9items = client.fabric.subscribers.list()

Methods

list

List subscriber resources.

create

Create a new subscriber resource.

get

Retrieve a single subscriber resource.

update

Replace a subscriber resource.

delete

Delete a subscriber resource.

list_addresses

List addresses for a subscriber resource.

list_sip_endpoints

List SIP endpoints for a subscriber.

create_sip_endpoint

Create a SIP endpoint for a subscriber.

get_sip_endpoint

Retrieve a SIP endpoint for a subscriber.

update_sip_endpoint

Partially update a SIP endpoint.

delete_sip_endpoint

Delete a SIP endpoint for a subscriber.