> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.getdial.ai/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.getdial.ai/_mcp/server.

# List account members

GET https://api.getdial.ai/api/v1/members

Returns everyone with access to this account. The owner is always the first entry and has `role: "owner"` with a `null` id — the owner is the account's own email address, not a revocable membership. Invited people appear with `role: "member"` and are `pending` until they accept.

Reference: https://docs.getdial.ai/api-reference/rest-api/members/list-members

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: rest
  version: 1.0.0
paths:
  /api/v1/members:
    get:
      operationId: list-members
      summary: List account members
      description: >-
        Returns everyone with access to this account. The owner is always the
        first entry and has `role: "owner"` with a `null` id — the owner is the
        account's own email address, not a revocable membership. Invited people
        appear with `role: "member"` and are `pending` until they accept.
      tags:
        - members
      parameters:
        - name: Authorization
          in: header
          description: 'Your Dial API key, sent as `Authorization: Bearer sk_live_...`'
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Everyone with access to the account.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Members_listMembers_Response_200'
        '401':
          description: Missing or invalid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
servers:
  - url: https://api.getdial.ai
    description: Dial REST API
components:
  schemas:
    AccountMemberRole:
      type: string
      enum:
        - owner
        - member
      title: AccountMemberRole
    AccountMemberStatus:
      type: string
      enum:
        - pending
        - active
      description: >-
        `pending` until the invitation is accepted. A pending member has no API
        key and no access. The owner is always `active`.
      title: AccountMemberStatus
    AccountMember:
      type: object
      properties:
        id:
          type:
            - string
            - 'null'
          description: >-
            The membership id, used to remove the member. Always `null` for the
            owner, who is the account's own email address and cannot be removed.
        email:
          type: string
          format: email
        role:
          $ref: '#/components/schemas/AccountMemberRole'
        status:
          $ref: '#/components/schemas/AccountMemberStatus'
          description: >-
            `pending` until the invitation is accepted. A pending member has no
            API key and no access. The owner is always `active`.
        invitedByEmail:
          type:
            - string
            - 'null'
          format: email
          description: Who sent the invitation. Null for the owner.
        invitedAt:
          type:
            - string
            - 'null'
          format: date-time
        acceptedAt:
          type:
            - string
            - 'null'
          format: date-time
          description: When the invitation was accepted, or null while pending.
        lastActiveAt:
          type:
            - string
            - 'null'
          format: date-time
          description: When this member's API key was last used, or null if never used.
      required:
        - id
        - email
        - role
        - status
      title: AccountMember
    Members_listMembers_Response_200:
      type: object
      properties:
        members:
          type: array
          items:
            $ref: '#/components/schemas/AccountMember'
      required:
        - members
      title: Members_listMembers_Response_200
    ErrorError:
      oneOf:
        - type: string
        - type: object
          additionalProperties:
            description: Any type
      description: An error message, or a validation-error object for 400 responses.
      title: ErrorError
    Error:
      type: object
      properties:
        error:
          $ref: '#/components/schemas/ErrorError'
          description: An error message, or a validation-error object for 400 responses.
      title: Error
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'Your Dial API key, sent as `Authorization: Bearer sk_live_...`'

```

## Examples



**Request**

```json
{}
```

**Response**

```json
{
  "members": [
    {
      "id": null,
      "email": "owner@example.com",
      "role": "owner",
      "status": "active",
      "invitedByEmail": null,
      "invitedAt": null,
      "acceptedAt": null,
      "lastActiveAt": "2024-06-10T14:22:00Z"
    },
    {
      "id": "a1b2c3d4-e5f6-7890-ab12-cd34ef567890",
      "email": "jane.doe@example.com",
      "role": "member",
      "status": "active",
      "invitedByEmail": "owner@example.com",
      "invitedAt": "2024-05-01T10:00:00Z",
      "acceptedAt": "2024-05-02T08:45:00Z",
      "lastActiveAt": "2024-06-09T16:30:00Z"
    },
    {
      "id": "f0e1d2c3-b4a5-6789-0abc-def123456789",
      "email": "john.smith@example.com",
      "role": "member",
      "status": "pending",
      "invitedByEmail": "owner@example.com",
      "invitedAt": "2024-06-05T12:15:00Z",
      "acceptedAt": null,
      "lastActiveAt": null
    }
  ]
}
```

**SDK Code**

```python
import requests

url = "https://api.getdial.ai/api/v1/members"

payload = {}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

response = requests.get(url, json=payload, headers=headers)

print(response.json())
```

```javascript
const url = 'https://api.getdial.ai/api/v1/members';
const options = {
  method: 'GET',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{}'
};

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"
	"strings"
	"net/http"
	"io"
)

func main() {

	url := "https://api.getdial.ai/api/v1/members"

	payload := strings.NewReader("{}")

	req, _ := http.NewRequest("GET", url, payload)

	req.Header.Add("Authorization", "Bearer <token>")
	req.Header.Add("Content-Type", "application/json")

	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://api.getdial.ai/api/v1/members")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{}"

response = http.request(request)
puts response.read_body
```

```java
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://api.getdial.ai/api/v1/members")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{}")
  .asString();
```

```php
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://api.getdial.ai/api/v1/members', [
  'body' => '{}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

echo $response->getBody();
```

```csharp
using RestSharp;

var client = new RestClient("https://api.getdial.ai/api/v1/members");
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer <token>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [] as [String : Any]

let postData = JSONSerialization.data(withJSONObject: parameters, options: [])

let request = NSMutableURLRequest(url: NSURL(string: "https://api.getdial.ai/api/v1/members")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data

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()
```