Actionstep Contact Documents API

The Contact Documents API from Actionstep — 2 operation(s) for contact documents.

Operations 5

GET /contactdocuments
POST /contactdocuments
GET /contactdocuments/{id}
PUT /contactdocuments/{id}
DELETE /contactdocuments/{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-contact-documents-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-contact-documents-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Action (Matter) Bill Settings Action Bill Settings Contact Documents 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: Contact Documents
paths:
  /contactdocuments:
    get:
      description: Returns the collection of all contact documents.
      tags:
      - Contact Documents
      responses:
        '200':
          description: OK.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PagedContactDocuments'
    post:
      description: Create a new contact document.
      tags:
      - Contact Documents
      requestBody:
        $ref: '#/components/requestBodies/CreateContactDocument'
      responses:
        '200':
          description: OK.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContactDocument'
  /contactdocuments/{id}:
    get:
      description: Returns a single contact document.
      tags:
      - Contact Documents
      parameters:
      - name: id
        in: path
        description: Unique identifier for a single contact document.
        required: true
        schema:
          type: integer
          format: integer
        example: 568
      responses:
        '200':
          description: OK.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContactDocument'
    put:
      description: Updates a single contact document.
      tags:
      - Contact Documents
      parameters:
      - name: id
        in: path
        description: Unique identifier for a single contact document.
        required: true
        schema:
          type: integer
          format: integer
        example: 568
      requestBody:
        $ref: '#/components/requestBodies/UpdateContactDocument'
      responses:
        '200':
          description: OK.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContactDocument'
    delete:
      description: Delete a single contact document
      tags:
      - Contact Documents
      parameters:
      - name: id
        in: path
        description: Unique identifier for a single contact document.
        required: true
        schema:
          type: integer
          format: integer
        example: 568
      responses:
        '204':
          description: Success, No Content.
components:
  schemas:
    UpdateContactDocumentLinks:
      type: object
      properties:
        folder:
          description: Unique identifier for a document folder for the contact document.
          example: 8263
          type: string
    CreateContactDocumentLinks:
      type: object
      required:
      - participant
      properties:
        participant:
          description: Unique identifier for a contact to which the contact document is associated.
          example: 321845
          type: integer
        folder:
          description: Unique identifier for a document folder for the contact document.
          example: 8263
          type: string
    ContactDocumentLinks:
      type: object
      properties:
        participant:
          description: Unique identifier for a contact to which this contact document is associated.
          example: 321845
          type: integer
        folder:
          description: Unique identifier for the containing folder hosting the contact document.
          example: 8263
          type: string
        createdBy:
          description: Unique identifier for the Actionstep user who created the contact document.
          example: 925
          type: integer
          readOnly: true
    ContactDocumentPageData:
      type: object
      properties:
        recordCount:
          description: The total number of contact documents 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 contact documents.
          type: integer
          example: 2
        pageSize:
          description: Page size.
          type: integer
          example: 50
        prevPage:
          description: A URL to the previous page of contact documents.
          type: string
          example: https://ap-southeast-2.actionstep.com/api/rest/contactdocuments?page=1
        nextPage:
          description: A URL to the next page of contact documents.
          type: string
          example: https://ap-southeast-2.actionstep.com/api/rest/contactdocuments?page=3
    ContactDocument:
      type: object
      properties:
        id:
          description: Unique identifier for a contact document.
          type: integer
          format: integer
          example: 586
          readOnly: true
        name:
          description: The name given to the document.
          type: string
          format: string
          example: Contract Terms and Conditions
        createdTimestamp:
          description: Timestamp for when the contact document was created. This is not the created date for the underlying document.
          type: string
          format: string
          example: 2025-05-13 14:36:33+12:00
          readOnly: true
        modifiedTimestamp:
          description: Timestamp for when the contact document was last modified. This is not the last modified date for the underlying document.
          type: string
          format: string
          example: 2025-09-17 09:12:32+12:00
          readOnly: true
        status:
          description: Status for the contact document.
          enum:
          - pending
          - generated
          - uploaded
          type: string
          format: string
          example: uploaded
          readOnly: true
        keywords:
          description: List of one of more keywords associated with the contact document.
          type: string
          format: string
          example: AML, KYC
          readOnly: true
        summary:
          description: A textual summary of the document.
          type: string
          format: string
          example: Updated KYC report.
        fileType:
          description: The file type for the contact document.
          type: string
          format: string
          example: image/png
          readOnly: true
        fileSize:
          description: The size (in bytes) of the underlying file.
          type: integer
          format: string
          example: 62739
          readOnly: true
        extension:
          description: Extension of the underlying file.
          type: string
          format: string
          example: png
          readOnly: true
        fileName:
          description: An internal file name assigned to the contact document.
          type: string
          format: string
          example: pid_11_1508314872d144890a7105bde4ec50182fc6.png
          readOnly: true
        sharepointUrl:
          description: A URL to the contact document.
          type: string
          format: string
          example: https://ap-southeast-2.actionstep.com/t/o/redstone/c/master/di/171049652/e/1750203825/u/94/dv/1/h/NTczOWVhYj/cddf/p/41845/d/1/driving%20license%20scan.png
          readOnly: true
        file:
          description: An internal reference for the contact document used for downloading the underlying file.
          type: string
          format: string
          example: CD::Contacts::63727::13
          readOnly: true
        links:
          $ref: '#/components/schemas/ContactDocumentLinks'
    CreateContactDocument:
      type: object
      required:
      - file
      properties:
        name:
          description: A name to be given to the document.
          type: string
          format: string
          example: Contract Terms and Conditions
        summary:
          description: A textual summary of the document.
          type: string
          format: string
          example: Updated KYC report.
        file:
          description: The indentifier for the uploaded file used to create the contact document. The format of the file parameter is important. It must include both the unique file id and the file name (including the file extension) in the format {file_id};{file_name_with_extension}
          type: string
          format: string
          example: 1740278677tYhvZ7HgvIzLWKFqnBt9mvyb9grF2mvb;Contract Terms.pdf
        links:
          $ref: '#/components/schemas/CreateContactDocumentLinks'
    UpdateContactDocument:
      type: object
      properties:
        name:
          description: A name to be given to the document.
          type: string
          format: string
          example: Contract Terms and Conditions
        summary:
          description: A textual summary of the document.
          type: string
          format: string
          example: Updated KYC report.
        links:
          $ref: '#/components/schemas/UpdateContactDocumentLinks'
    PagedContactDocuments:
      type: object
      properties:
        contactdocuments:
          type: array
          items:
            $ref: '#/components/schemas/ContactDocument'
        meta:
          $ref: '#/components/schemas/PageMetaData'
    PageMetaData:
      type: object
      properties:
        paging:
          $ref: '#/components/schemas/PagingData'
    PagingData:
      type: object
      properties:
        contactdocuments:
          $ref: '#/components/schemas/ContactDocumentPageData'
  requestBodies:
    UpdateContactDocument:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/UpdateContactDocument'
    CreateContactDocument:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/CreateContactDocument'
externalDocs:
  description: API Developer Portal - Constructing API Requests
  url: https://docs.actionstep.com/api-requests/