Actionstep ActionTypes API

The ActionTypes API from Actionstep — 1 operation(s) for actiontypes.

Operations 1

GET /actiontypes

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-actiontypes-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-actiontypes-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Action (Matter) Bill Settings Action Bill Settings Action Types 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: ActionTypes
paths:
  /actiontypes:
    get:
      description: Returns a collection of Matter types. For information on how to construct requests filtering by various properties on a Matter type please refer to the API Developer Portal.
      tags:
      - ActionTypes
      responses:
        '200':
          description: OK.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PagedActionTypes'
components:
  schemas:
    PagingData:
      type: object
      properties:
        actions:
          $ref: '#/components/schemas/ActionTypePageData'
    ActionType:
      type: object
      properties:
        id:
          description: Unique identifier for the Matter type.
          example: 113
          type: integer
        name:
          description: Name of the Matter type.
          example: Litigation.
          type: string
        description:
          description: Description for the Matter type.
          example: Covers all general litigation matters.
          type: string
        copyrightHolder:
          description: For third-party Matter type templates this shows the copyright owner.
          example: Xeon Legal Corp
          type: string
        copyrightContact:
          description: For third-party Matter type templates this shows the creator's contact name.
          example: James Wattenger
          type: string
        copyrightEmail:
          description: For third-party Matter type templates this shows the creator's email address.
          example: james.wattenger@xeonlegal.com
          type: string
        trackActualTime:
          description: Flag to indicate if the Matter type will track actual time, True (T) or False (F).
          type: string
          format: string
          enum:
          - T
          - F
          example: T
        trackBillableTime:
          description: Flag to indicate if the Matter type will track billable time, True (T) or False (F).
          type: string
          format: string
          enum:
          - T
          - F
          example: T
        isForMarketingCampaigns:
          description: Flag to indicate if the Matter type can be used for marketing campaigns, True (T) or False (F).
          type: string
          format: string
          enum:
          - T
          - F
          example: T
        isForMarketingEvents:
          description: Flag to indicate if the Matter type can be used for marketing events, True (T) or False (F).
          type: string
          format: string
          enum:
          - T
          - F
          example: T
        isForEmployees:
          description: Flag to indicate if the Matter type can be used by employees, True (T) or False (F).
          type: string
          format: string
          enum:
          - T
          - F
          example: T
        isForCrm:
          description: Flag to indicate if the Matter type can be used for CRM, True (T) or False (F).
          type: string
          format: string
          enum:
          - T
          - F
          example: T
        isForDebtCollection:
          description: Flag to indicate if the Matter type can be used for debt collection, True (T) or False (F).
          type: string
          format: string
          enum:
          - T
          - F
          example: T
        isDisabled:
          description: Flag to indicate if the Matter type is disabled, True (T) or False (F).
          type: string
          format: string
          enum:
          - T
          - F
          example: T
        isBillable:
          description: Flag to indicate if the Matter type is billable, True (T) or False (F).
          type: string
          format: string
          enum:
          - T
          - F
          example: T
        enableActionImage:
          description: Flag to indicate if the Matter type can display the default logo/image, True (T) or False (F).
          example: T
          type: string
        defaultEmailSubject:
          description: Default email subject when composing emails.
          example: Referencing current litigation matter
          type: string
        logoFilename:
          description: File name of the default logo/image for the Matter type.
          example: general_litigation_image.png
          type: string
        customLogoFilename:
          description: Override file name containing a custom logo/image.
          example: xeon_litigation.jpg
          type: string
        customLogoDirectory:
          description: Folder name containing the custom logo/image.
          example: logos
          type: string
        customLogoFilesize:
          description: Size in bytes of the custom logo/image.
          example: 1632
          type: integer
        customLogoModifiedTimestamp:
          description: Timestamp of when the custom logo/image was last modified.
          example: 2022-05-03 20:49:15+12:00
          format: timestamp
          type: string
        templateIdentifier:
          description: Unique identifier for the Matter type template.
          example: 6fc4839a01e526ccafbe78df01b588d1909302c9
          type: string
        allowCloseWithOpenInvoice:
          description: Flag to indicate if Matters created from the Matter type can closed with any open invoices, True (T) or False (F).
          example: F
          type: string
        allowInlineCustomizing:
          description: Flag to indicate if inline customization of the Matter type is permitted, True (T) or False (F).
          type: string
          format: string
          enum:
          - T
          - F
          example: T
        canCreate:
          description: Flag to indicate if Matters can be created from the Matter type, True (T) or False (F).
          type: string
          format: string
          enum:
          - T
          - F
          example: T
        showAmlReviewStatus:
          description: Flag to indicate if the AML review status should be shown on Matters created from the Matter type, True (T) or False (F).
          type: string
          format: string
          enum:
          - T
          - F
          example: T
        links:
          $ref: '#/components/schemas/ActionTypeLinks'
    PagedActionTypes:
      type: object
      properties:
        actions:
          type: array
          items:
            $ref: '#/components/schemas/ActionType'
        meta:
          $ref: '#/components/schemas/PageMetaData'
    ActionTypeLinks:
      type: object
      properties:
        primaryParticipantType:
          description: Unique identifier of the primary participant type for the Matter type.
          example: 450
          type: integer
    PageMetaData:
      type: object
      properties:
        paging:
          $ref: '#/components/schemas/PagingData'
    ActionTypePageData:
      type: object
      properties:
        recordCount:
          description: The total number of Matter types returned by the underlying query.
          type: integer
          example: 360
        pageCount:
          description: The total number of pages generated by the underlying query.
          type: integer
          example: 8
        page:
          description: The page number for this page of Matter types.
          type: integer
          example: 2
        pageSize:
          description: Page size.
          type: integer
          example: 50
        prevPage:
          description: A URL to the previous page of Matter types.
          type: string
          example: https://ap-southeast-2.actionstep.com/api/rest/actiontypes?page=1
        nextPage:
          description: A URL to the next page of Matter types.
          type: string
          example: https://ap-southeast-2.actionstep.com/api/rest/actiontypes?page=3
externalDocs:
  description: API Developer Portal - Constructing API Requests
  url: https://docs.actionstep.com/api-requests/