Actionstep Data Collection Records API

The Data Collection Records API from Actionstep — 2 operation(s) for data collection records.

Operations 4

GET /datacollectionrecords
POST /datacollectionrecords
GET /datacollectionrecords/{id}
DELETE /datacollectionrecords/{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-data-collection-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-data-collection-records-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Action (Matter) Bill Settings Action Bill Settings Data Collection 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: Data Collection Records
paths:
  /datacollectionrecords:
    get:
      description: Returns a collection of data collection records.
      tags:
      - Data Collection Records
      responses:
        '200':
          description: OK.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PagedDataCollectionRecords'
    post:
      description: Create a new data collection record.
      tags:
      - Data Collection Records
      requestBody:
        $ref: '#/components/requestBodies/CreateDataCollectionRecord'
      responses:
        '200':
          description: OK.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataCollectionRecord'
  /datacollectionrecords/{id}:
    get:
      description: Returns a single data collection record.
      tags:
      - Data Collection Records
      parameters:
      - name: id
        in: path
        description: Unique identifier for a data collection record.
        required: true
        schema:
          type: integer
          format: int32
        example: 380
      responses:
        '200':
          description: OK.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataCollectionRecord'
    delete:
      description: Delete a data collection record.
      tags:
      - Data Collection Records
      parameters:
      - name: id
        in: path
        description: Unique identifier for a data collection record.
        required: true
        schema:
          type: integer
          format: int32
        example: 608
      responses:
        '204':
          description: Success, No Content.
components:
  schemas:
    DataCollectionRecord:
      type: object
      properties:
        id:
          description: Unique identifier for the data collection record.
          example: 4910
          type: integer
          readOnly: true
        canWrite:
          description: Indicates if the data collection record can be written to.
          enum:
          - T
          - F
          example: F
          type: string
          readOnly: true
        canDelete:
          description: Indicates if the data collection record can be deleted.
          enum:
          - T
          - F
          example: F
          type: string
          readOnly: true
        links:
          $ref: '#/components/schemas/DataCollectionRecordLinks'
    PagedDataCollectionRecords:
      type: object
      properties:
        datacollectionrecords:
          type: array
          items:
            $ref: '#/components/schemas/DataCollectionRecord'
        meta:
          $ref: '#/components/schemas/PageMetaData'
    CreateDataCollectionRecord:
      type: object
      properties:
        canWrite:
          description: Indicates if the data collection record can be written to.
          enum:
          - T
          - F
          example: F
          type: string
        canDelete:
          description: Indicates if the data collection record can be deleted.
          enum:
          - T
          - F
          example: F
          type: string
        links:
          $ref: '#/components/schemas/CreateDataCollectionRecordLinks'
    DataCollectionRecordsPageData:
      type: object
      properties:
        recordCount:
          description: The total number of data collection 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 data collection records.
          type: integer
          example: 2
        pageSize:
          description: Page size.
          type: integer
          example: 50
        prevPage:
          description: A URL to the previous page of data collection records.
          type: string
          example: https://ap-southeast-2.actionstep.com/api/rest/datacollectionrecords?page=1
        nextPage:
          description: A URL to the next page of data collection records.
          type: string
          example: https://ap-southeast-2.actionstep.com/api/rest/datacollectionrecords?page=3
    CreateDataCollectionRecordLinks:
      type: object
      properties:
        action:
          description: Unique identifier of the matter to which the data collection is associated.
          example: 822
          type: integer
        dataCollection:
          description: Unique identifier of the data collection to which the data collection record is associated.
          example: 50
          type: integer
    DataCollectionRecordLinks:
      type: object
      properties:
        action:
          description: Unique identifier of the matter to which the data collection is associated.
          example: 822
          type: integer
        dataCollection:
          description: Unique identifier of the data collection to which the data collection record is associated.
          example: 50
          type: integer
    PageMetaData:
      type: object
      properties:
        paging:
          $ref: '#/components/schemas/PagingData'
    PagingData:
      type: object
      properties:
        datacollectionrecords:
          $ref: '#/components/schemas/DataCollectionRecordsPageData'
  requestBodies:
    CreateDataCollectionRecord:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/CreateDataCollectionRecord'
externalDocs:
  description: API Developer Portal - Constructing API Requests
  url: https://docs.actionstep.com/api-requests/