# List All Conferences GET https://YOUR_SPACE.signalwire.com/api/laml/2010-04-01/Accounts/{AccountSid}/Conferences The ability to read all of the conferences that are associated with your Account. This will be returned as a list of conferences. #### Permissions The API token used to authenticate must have the following scope(s) enabled to make a successful request: _Voice_. [Learn more about API scopes](/docs/platform/your-signalwire-api-space). Reference: https://signalwire.com/docs/compatibility-api/rest/conferences/list-all-conferences ## OpenAPI Specification ```yaml openapi: 3.1.0 info: title: compatibility version: 1.0.0 paths: /Accounts/{AccountSid}/Conferences: get: operationId: list-all-conferences summary: List All Conferences description: >- The ability to read all of the conferences that are associated with your Account. This will be returned as a list of conferences. #### Permissions The API token used to authenticate must have the following scope(s) enabled to make a successful request: _Voice_. [Learn more about API scopes](/docs/platform/your-signalwire-api-space). tags: - subpackage_conferences parameters: - name: AccountSid in: path description: The unique identifier for the account that created this conference. required: true schema: type: string format: uuid - name: DateCreated in: query description: >- Shows conferences that were created on the date provided. Format: YYYY-MM-DD. required: false schema: type: string - name: DateCreated< in: query description: >- Shows conferences that were created before the date provided. Format: YYYY-MM-DD. required: false schema: type: string - name: DateCreated> in: query description: >- Shows conferences that were created after the date provided. Format: YYYY-MM-DD. required: false schema: type: string - name: DateUpdated in: query description: >- Shows conferences that were updated on the date provided. Format: YYYY-MM-DD. required: false schema: type: string - name: DateUpdated< in: query description: >- Shows conferences that were updated before the date provided. Format: YYYY-MM-DD. required: false schema: type: string - name: DateUpdated> in: query description: >- Shows conferences that were updated after the date provided. Format: YYYY-MM-DD. required: false schema: type: string - name: FriendlyName in: query description: A description, up to 64 characters, of the conference room. required: false schema: type: string - name: Status in: query description: The status of this conference. required: false schema: $ref: '#/components/schemas/ConferenceStatus' - name: Page in: query description: >- The page number to retrieve. Page numbers are zero-indexed, so the first page is 0. required: false schema: type: integer default: 0 - name: PageSize in: query description: >- The number of results to return per page. The default is 50, and the maximum is 1000. required: false schema: type: integer default: 50 - name: PageToken in: query description: >- A token used to retrieve a specific page of results. Must start with PA or PB. required: false schema: type: string - name: Authorization in: header description: >- SignalWire Basic Authentication using Project ID and API Token. The client sends HTTP requests with the Authorization header containing the word Basic followed by a space and a base64-encoded string of project_id:token. The project ID will be used as the username and the API token as the password. Example: ``` Authorization: Basic base64(project_id:token) ``` required: true schema: type: string responses: '200': description: The request has succeeded. content: application/json: schema: $ref: '#/components/schemas/ConferenceListResponse' '400': description: >- The request was invalid or cannot be processed. Check the error details for more information. content: application/json: schema: $ref: '#/components/schemas/CompatibilityErrorResponse' '401': description: Authentication failed. Please verify your credentials and try again. content: application/json: schema: $ref: '#/components/schemas/CompatibilityErrorResponse' '422': description: >- The request could not be processed due to validation errors. Check the error details for more information. content: application/json: schema: $ref: '#/components/schemas/CompatibilityErrorResponse' servers: - url: https://YOUR_SPACE.signalwire.com/api/laml/2010-04-01 components: schemas: ConferenceStatus: type: string enum: - init - in-progress - completed description: Conference status. title: ConferenceStatus ConferenceSubresourceUris: type: object properties: participants: type: string description: Links to the participants. recordings: type: string description: Links to the recordings. required: - participants - recordings description: Conference subresource URIs. title: ConferenceSubresourceUris Conference: type: object properties: sid: type: string format: uuid description: The unique identifier for this conference. account_sid: type: string format: uuid description: The unique identifier for the account that created this conference. date_created: type: string description: The date, in RFC 2822 format, this conference was created. date_updated: type: string description: The date, in RFC 2822 format, this conference was updated. friendly_name: type: string description: A description, up to 64 characters, of the conference room. status: $ref: '#/components/schemas/ConferenceStatus' description: The status of this conference. api_version: type: string description: The version of the SignalWire API. region: type: string description: The region where this conference audio was mixed. uri: type: string description: The URI for this conference. subresource_uris: $ref: '#/components/schemas/ConferenceSubresourceUris' description: The links to associated subresources. required: - sid - account_sid - date_created - date_updated - friendly_name - status - api_version - region - uri - subresource_uris description: Conference model. title: Conference ConferenceListResponse: type: object properties: uri: type: string description: The URI of the current page. first_page_uri: type: string description: The URI of the first page. next_page_uri: type: - string - 'null' description: The URI of the next page. previous_page_uri: type: - string - 'null' description: The URI of the previous page. page: type: integer description: The current page number. page_size: type: integer description: The number of items per page. conferences: type: array items: $ref: '#/components/schemas/Conference' description: List of conferences. required: - uri - first_page_uri - next_page_uri - previous_page_uri - page - page_size - conferences description: Response containing a list of conferences. title: ConferenceListResponse CompatibilityErrorResponse: type: object properties: code: type: integer description: Error code. message: type: string description: Error message. more_info: type: string description: URL for more information about the error. status: type: integer description: HTTP status code. required: - code - message - more_info - status description: Error response model. title: CompatibilityErrorResponse securitySchemes: SignalWireBasicAuth: type: http scheme: basic description: >- SignalWire Basic Authentication using Project ID and API Token. The client sends HTTP requests with the Authorization header containing the word Basic followed by a space and a base64-encoded string of project_id:token. The project ID will be used as the username and the API token as the password. Example: ``` Authorization: Basic base64(project_id:token) ``` ``` ## SDK Code Examples ```python import requests url = "https://your_space.signalwire.com/api/laml/2010-04-01/Accounts/AccountSid/Conferences" headers = {"Authorization": "Basic :"} response = requests.get(url, headers=headers) print(response.json()) ``` ```javascript const url = 'https://your_space.signalwire.com/api/laml/2010-04-01/Accounts/AccountSid/Conferences'; const options = {method: 'GET', headers: {Authorization: 'Basic :'}}; try { const response = await fetch(url, options); const data = await response.json(); console.log(data); } catch (error) { console.error(error); } ``` ```go package main import ( "fmt" "net/http" "io" ) func main() { url := "https://your_space.signalwire.com/api/laml/2010-04-01/Accounts/AccountSid/Conferences" req, _ := http.NewRequest("GET", url, nil) req.Header.Add("Authorization", "Basic :") res, _ := http.DefaultClient.Do(req) defer res.Body.Close() body, _ := io.ReadAll(res.Body) fmt.Println(res) fmt.Println(string(body)) } ``` ```ruby require 'uri' require 'net/http' url = URI("https://your_space.signalwire.com/api/laml/2010-04-01/Accounts/AccountSid/Conferences") http = Net::HTTP.new(url.host, url.port) http.use_ssl = true request = Net::HTTP::Get.new(url) request["Authorization"] = 'Basic :' response = http.request(request) puts response.read_body ``` ```java import com.mashape.unirest.http.HttpResponse; import com.mashape.unirest.http.Unirest; HttpResponse response = Unirest.get("https://your_space.signalwire.com/api/laml/2010-04-01/Accounts/AccountSid/Conferences") .header("Authorization", "Basic :") .asString(); ``` ```php request('GET', 'https://your_space.signalwire.com/api/laml/2010-04-01/Accounts/AccountSid/Conferences', [ 'headers' => [ 'Authorization' => 'Basic :', ], ]); echo $response->getBody(); ``` ```csharp using RestSharp; var client = new RestClient("https://your_space.signalwire.com/api/laml/2010-04-01/Accounts/AccountSid/Conferences"); var request = new RestRequest(Method.GET); request.AddHeader("Authorization", "Basic :"); IRestResponse response = client.Execute(request); ``` ```swift import Foundation let headers = ["Authorization": "Basic :"] let request = NSMutableURLRequest(url: NSURL(string: "https://your_space.signalwire.com/api/laml/2010-04-01/Accounts/AccountSid/Conferences")! as URL, cachePolicy: .useProtocolCachePolicy, timeoutInterval: 10.0) request.httpMethod = "GET" request.allHTTPHeaderFields = headers let session = URLSession.shared let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in if (error != nil) { print(error as Any) } else { let httpResponse = response as? HTTPURLResponse print(httpResponse) } }) dataTask.resume() ```