Google Voice Users API

Manage Google Voice user assignments

Operations 2

GET /admin/directory/v1/users Google Voice List Users #
GET /admin/directory/v1/users/{userKey} Google Voice Get User #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/google-voice-users-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

google-voice-users-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Google Voice Locations Users API
  description: Google Voice is a telecommunications service by Google that provides call forwarding, voicemail, text messaging, and voice calling. While Google Voice does not offer an official public REST API, the platform integrates with Google Workspace for business telephony. This specification documents the known endpoints and capabilities based on the Google Workspace Admin SDK and related voice management interfaces for provisioning and managing Google Voice services programmatically.
  version: 1.0.0
  contact:
    name: Google Voice
    url: https://voice.google.com
  license:
    name: Google APIs Terms of Service
    url: https://developers.google.com/terms
servers:
- url: https://admin.googleapis.com
  description: Google Workspace Admin SDK Server
tags:
- name: Users
  description: Manage Google Voice user assignments
paths:
  /admin/directory/v1/users:
    get:
      operationId: listUsers
      summary: Google Voice List Users
      description: Lists users in the Google Workspace domain who may be assigned Google Voice licenses.
      tags:
      - Users
      parameters:
      - name: domain
        in: query
        description: The domain name.
        schema:
          type: string
      - name: maxResults
        in: query
        description: Maximum number of results.
        schema:
          type: integer
      - name: pageToken
        in: query
        description: Token for pagination.
        schema:
          type: string
      responses:
        '200':
          description: Successful response with user list.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserListResponse'
  /admin/directory/v1/users/{userKey}:
    get:
      operationId: getUser
      summary: Google Voice Get User
      description: Retrieves a user, including their Google Voice assignment status.
      tags:
      - Users
      parameters:
      - name: userKey
        in: path
        required: true
        description: The user's email address or unique ID.
        schema:
          type: string
      responses:
        '200':
          description: Successful response with user details.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/User'
components:
  schemas:
    User:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier for the user.
        primaryEmail:
          type: string
          format: email
          description: The user's primary email address.
        name:
          type: object
          properties:
            givenName:
              type: string
            familyName:
              type: string
            fullName:
              type: string
        phones:
          type: array
          items:
            type: object
            properties:
              value:
                type: string
                description: Phone number.
              type:
                type: string
                description: Type of phone (home, work, mobile, etc.).
              primary:
                type: boolean
        isEnrolledIn2Sv:
          type: boolean
        isAdmin:
          type: boolean
    UserListResponse:
      type: object
      properties:
        kind:
          type: string
        users:
          type: array
          items:
            $ref: '#/components/schemas/User'
        nextPageToken:
          type: string
externalDocs:
  description: Google Voice Help
  url: https://support.google.com/voice