Actionstep Phone Records API

The Phone Records API from Actionstep — 2 operation(s) for phone records.

Operations 5

GET /phonerecords
POST /phonerecords
GET /phonerecords/{id}
PUT /phonerecords/{id}
DELETE /phonerecords/{id}

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/actionstep-phone-records-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

actionstep-phone-records-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Action (Matter) Bill Settings Action Bill Settings Phone Records API
  description: For retrieving Action Bill Settings. For historical reasons Matters are referred to as *actions* in this version of the API. For information of how to construct requests utilising fieldsets, sorting, paging, filters, and '*includes*', please refer to the API Developer Portal. E&OE.
  version: '1.0'
servers:
- url: https://api.actionstep.com
  description: Base URL reconciled from apis.yml
tags:
- name: Phone Records
paths:
  /phonerecords:
    get:
      description: Returns the collection of all phone records.
      tags:
      - Phone Records
      responses:
        '200':
          description: OK.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PagedPhoneRecords'
    post:
      description: Create a new phone record.
      tags:
      - Phone Records
      requestBody:
        $ref: '#/components/requestBodies/CreatePhoneRecord'
      responses:
        '200':
          description: OK.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PhoneRecord'
  /phonerecords/{id}:
    get:
      description: Returns a single phone record.
      tags:
      - Phone Records
      parameters:
      - name: id
        in: path
        description: Unique identifier for a single phone record.
        required: true
        schema:
          type: integer
          format: integer
        example: 1176
      responses:
        '200':
          description: OK.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PhoneRecord'
    put:
      description: Updates a single phone record.
      tags:
      - Phone Records
      parameters:
      - name: id
        in: path
        description: Unique identifier for a single phone record.
        required: true
        schema:
          type: integer
          format: integer
        example: 1176
      requestBody:
        $ref: '#/components/requestBodies/UpdatePhoneRecord'
      responses:
        '200':
          description: OK.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PhoneRecord'
    delete:
      description: Delete a single phone record.
      tags:
      - Phone Records
      parameters:
      - name: id
        in: path
        description: Unique identifier for a single phone record.
        required: true
        schema:
          type: integer
          format: integer
        example: 1176
      responses:
        '204':
          description: Success, No Content.
components:
  schemas:
    PhoneRecordPageData:
      type: object
      properties:
        recordCount:
          description: The total number of phone records returned by the underlying query.
          type: integer
          example: 2487
        pageCount:
          description: The total number of pages generated by the underlying query.
          type: integer
          example: 50
        page:
          description: The page number for this page of phone records.
          type: integer
          example: 2
        pageSize:
          description: Page size.
          type: integer
          example: 50
        prevPage:
          description: A URL to the previous page of phone records.
          type: string
          example: https://ap-southeast-2.actionstep.com/api/rest/phonerecords?page=1
        nextPage:
          description: A URL to the next page of phone records.
          type: string
          example: https://ap-southeast-2.actionstep.com/api/rest/phonerecords?page=3
    CreatePhoneRecord:
      type: object
      required:
      - direction
      - callTimestamp
      - outcome
      properties:
        fromParticipantOther:
          description: Used to record the name of an individual or company not held in Actionstep for an incoming call.
          type: string
          format: string
          example: John Smith
        toParticipantOther:
          description: Used to record the name of an individual or company not held in Actionstep for an outgoing call.
          type: string
          format: string
          example: AJ Accountants LLC
        direction:
          description: Direction of the call.
          enum:
          - in
          - out
          type: string
          format: string
          example: out
        phoneNumber:
          description: Phone number.
          type: string
          format: string
          example: +44 493 993938
        phoneNumberType:
          description: A type associated to the phone number.
          type: string
          format: string
          example: Business
        actualHours:
          description: The duration of the call measured in hours.
          type: number
          format: string
          example: 0.25
        notes:
          description: Notes taken from the call.
          type: string
          format: string
          example: Discussed progress for this week.
        callTimestamp:
          description: Date and time of the phone call.
          type: string
          format: timestamp
          example: 2025-09-17 09:12:32+12:00
        outcome:
          description: Indicates the outcome for the call.
          type: string
          format: string
          example: Call completed
        links:
          $ref: '#/components/schemas/CreatePhoneRecordLinks'
    UpdatePhoneRecord:
      type: object
      properties:
        fromParticipantOther:
          description: Used to record the name of an individual or company not held in Actionstep for an incoming call.
          type: string
          format: string
          example: John Smith
        toParticipantOther:
          description: Used to record the name of an individual or company not held in Actionstep for an outgoing call.
          type: string
          format: string
          example: AJ Accountants LLC
        direction:
          description: Direction of the call.
          enum:
          - in
          - out
          type: string
          format: string
          example: out
        phoneNumber:
          description: Phone number.
          type: string
          format: string
          example: +44 493 993938
        phoneNumberType:
          description: A type associated to the phone number.
          type: string
          format: string
          example: Business
        actualHours:
          description: The duration of the call measured in hours.
          type: number
          format: string
          example: 0.25
        notes:
          description: Notes taken from the call.
          type: string
          format: string
          example: Discussed progress for this week.
        callTimestamp:
          description: Date and time of the phone call.
          type: string
          format: timestamp
          example: 2025-09-17 09:12:32+12:00
        outcome:
          description: Indicates the outcome for the call.
          type: string
          format: string
          example: Call completed
        links:
          $ref: '#/components/schemas/UpdatePhoneRecordLinks'
    UpdatePhoneRecordLinks:
      type: object
      properties:
        action:
          description: Unique identifier of the matter to which the phone record is associated.
          example: 321845
          type: integer
        fromParticipant:
          description: Unique identifier for a participant from whom the call was received.
          example: 8945
          type: integer
        toParticipant:
          description: Unique identifier for a participant to whom the call was made.
          example: 4912
          type: integer
    CreatePhoneRecordLinks:
      type: object
      properties:
        action:
          description: Unique identifier of the matter to which the phone record is associated.
          example: 321845
          type: integer
        fromParticipant:
          description: Unique identifier for a participant from whom the call was received.
          example: 8945
          type: integer
        toParticipant:
          description: Unique identifier for a participant to whom the call was made.
          example: 4912
          type: integer
    PhoneRecordLinks:
      type: object
      properties:
        action:
          description: Unique identifier of the matter to which the phone record is associated.
          example: 321845
          type: integer
        fromParticipant:
          description: Unique identifier for a participant from whom the call was received.
          example: 8945
          type: integer
        toParticipant:
          description: Unique identifier for a participant to whom the call was made.
          example: 4912
          type: integer
    PagedPhoneRecords:
      type: object
      properties:
        phonerecords:
          type: array
          items:
            $ref: '#/components/schemas/PhoneRecord'
        meta:
          $ref: '#/components/schemas/PageMetaData'
    PhoneRecord:
      type: object
      properties:
        id:
          description: Unique identifier for a phone record.
          type: integer
          format: integer
          example: 1176
          readOnly: true
        fromParticipantOther:
          description: Used to record the name of an individual or company not held in Actionstep for an incoming call.
          type: string
          format: string
          example: John Smith
        toParticipantOther:
          description: Used to record the name of an individual or company not held in Actionstep for an outgoing call.
          type: string
          format: string
          example: AJ Accountants LLC
        direction:
          description: Direction of the call.
          enum:
          - in
          - out
          type: string
          format: string
          example: out
        phoneNumber:
          description: Phone number.
          type: string
          format: string
          example: +44 493 993938
        phoneNumberType:
          description: A type associated to the phone number.
          type: string
          format: string
          example: Business
        actualHours:
          description: The duration of the call measured in hours.
          type: number
          format: string
          example: 0.25
        notes:
          description: Notes taken from the call.
          type: string
          format: string
          example: Discussed progress for this week.
        callTimestamp:
          description: Date and time of the phone call.
          type: string
          format: timestamp
          example: 2025-09-17 09:12:32+12:00
        outcome:
          description: Indicates the outcome for the call.
          type: string
          format: string
          example: Call completed
        links:
          $ref: '#/components/schemas/PhoneRecordLinks'
    PageMetaData:
      type: object
      properties:
        paging:
          $ref: '#/components/schemas/PagingData'
    PagingData:
      type: object
      properties:
        phonerecords:
          $ref: '#/components/schemas/PhoneRecordPageData'
  requestBodies:
    UpdatePhoneRecord:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/UpdatePhoneRecord'
    CreatePhoneRecord:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/CreatePhoneRecord'
externalDocs:
  description: API Developer Portal - Constructing API Requests
  url: https://docs.actionstep.com/api-requests/