List Documents
GEThttps://{Your_Space_Name}.signalwire.com/api/datasphere/documents
A list of Datasphere Documents
Request
Responses
- 200
- 401
- 404
The request has succeeded.
Access is unauthorized.
The server cannot find the requested resource.
Authorization: http
name: BasicAuthtype: httpscheme: basic
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://{Your_Space_Name}.signalwire.com/api/datasphere/documents");
request.Headers.Add("Accept", "application/json");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
ResponseClear