Skip to main content

List Documents

GET 

https://{Your_Space_Name}.signalwire.com/api/datasphere/documents

A list of Datasphere Documents

Request

Responses

The request has succeeded.

Authorization: http

name: BasicAuthtype: httpscheme: basic
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());
Request Collapse all
Base URL
https://{Your_Space_Name}.signalwire.com/api/datasphere
Auth
ResponseClear

Click the Send API Request button above and see the response here!