Modern Treasury Hold API

The Hold API from Modern Treasury — 2 operation(s) for hold.

Operations 4

GET /api/holds list holds #
POST /api/holds create hold #
GET /api/holds/{id} show hold #
PATCH /api/holds/{id} update hold #

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/modern-treasury-hold-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

modern-treasury-hold-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Modern Treasury AccountCapability Hold API
  version: v1
  contact:
    name: Modern Treasury Engineering Team
    url: https://moderntreasury.com
  description: The Modern Treasury REST API. Please see https://docs.moderntreasury.com for more details.
servers:
- url: http://localhost:3000
- url: https://app.moderntreasury.com
tags:
- name: Hold
paths:
  /api/holds:
    get:
      summary: list holds
      tags:
      - Hold
      description: Get a list of holds.
      operationId: listHolds
      security:
      - basic_auth: []
      parameters:
      - name: after_cursor
        in: query
        schema:
          type:
          - string
          - 'null'
        required: false
      - name: per_page
        in: query
        required: false
        schema:
          type: integer
      - name: target_id
        in: query
        schema:
          type:
          - string
          - 'null'
        required: false
        description: 'Translation missing: en.openapi.descriptions.payment_order.query_params.target_id'
      - name: target_type
        in: query
        schema:
          type:
          - string
          - 'null'
          enum:
          - payment_order
        required: false
        description: 'Translation missing: en.openapi.descriptions.payment_order.query_params.target_type'
      - name: status
        in: query
        schema:
          type:
          - string
          - 'null'
          enum:
          - active
          - resolved
        required: false
        description: 'Translation missing: en.openapi.descriptions.payment_order.query_params.status'
      - $ref: '#/components/parameters/metadata_query'
      responses:
        '200':
          description: successful
          headers:
            X-After-Cursor:
              schema:
                type:
                - string
                - 'null'
              required: false
              description: The cursor for the next page. Including this in a call as `after_cursor` will return the next page.
            X-Per-Page:
              schema:
                type:
                - integer
                - 'null'
              description: The current `per_page`.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/hold'
    post:
      summary: create hold
      tags:
      - Hold
      description: Create a new hold
      operationId: createHold
      security:
      - basic_auth: []
      parameters:
      - name: Idempotency-Key
        in: header
        required: false
        description: This key should be something unique, preferably something like an UUID.
        schema:
          type: string
      responses:
        '201':
          description: created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/hold'
        '400':
          description: bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/error_message'
        '403':
          description: forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/error_message'
        '404':
          description: not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/error_message'
        '422':
          description: unprocessable entity
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/error_message'
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                target_type:
                  type: string
                  enum:
                  - payment_order
                  description: The type of target to hold
                target_id:
                  type: string
                  format: uuid
                  description: The ID of the target to hold
                reason:
                  type:
                  - string
                  - 'null'
                  description: The reason for the hold
                status:
                  type: string
                  enum:
                  - active
                  description: The status of the hold
                metadata:
                  type:
                  - object
                  - 'null'
                  additionalProperties:
                    type: string
                  description: Additional metadata for the hold
              required:
              - target_type
              - target_id
              - status
  /api/holds/{id}:
    get:
      summary: show hold
      tags:
      - Hold
      description: Get a specific hold
      operationId: showHold
      security:
      - basic_auth: []
      parameters:
      - name: id
        in: path
        schema:
          type: string
        description: hold id
        required: true
      responses:
        '200':
          description: successful
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/hold'
        '404':
          description: not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/error_message'
    patch:
      summary: update hold
      tags:
      - Hold
      description: Update a hold
      operationId: updateHold
      security:
      - basic_auth: []
      parameters:
      - name: id
        in: path
        schema:
          type: string
        description: hold id
        required: true
      responses:
        '200':
          description: successful
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/hold'
        '400':
          description: bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/error_message'
        '422':
          description: unprocessable entity
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/error_message'
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                status:
                  type: string
                  enum:
                  - resolved
                  description: The new status of the hold
                resolution:
                  type:
                  - string
                  - 'null'
                  description: The resolution of the hold
              required:
              - status
components:
  parameters:
    metadata_query:
      name: metadata
      in: query
      schema:
        type: object
        additionalProperties:
          type: string
      style: deepObject
      explode: true
      required: false
      description: For example, if you want to query for records with metadata key `Type` and value `Loan`, the query would be `metadata%5BType%5D=Loan`. This encodes the query parameters.
  schemas:
    error_message:
      type: object
      properties:
        errors:
          type: object
          properties:
            code:
              type: string
              enum:
              - parameter_invalid
              - parameter_missing
              - resource_not_found
              - not_found
              - forbidden
              - invalid_ip
              - invalid_key
              - header_invalid
              - expired_key
              - conflict
              - too_many_requests
            message:
              type: string
            parameter:
              type: string
      required:
      - errors
    hold:
      type: object
      properties:
        id:
          type: string
          format: uuid
        object:
          type: string
          enum:
          - hold
          description: The type of object
        live_mode:
          type: boolean
          description: This field will be true if this object exists in the live environment or false if it exists in the test environment.
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
        status:
          type: string
          enum:
          - active
          - resolved
          description: The status of the hold
        target_type:
          type: string
          enum:
          - payment_order
          description: The type of target being held
        target_id:
          type: string
          format: uuid
          description: The ID of the target being held
        reason:
          type:
          - string
          - 'null'
          description: The reason for the hold
        resolution:
          type:
          - string
          - 'null'
          description: The resolution of the hold
        resolved_at:
          type:
          - string
          - 'null'
          format: date-time
          description: When the hold was resolved
        metadata:
          type:
          - object
          - 'null'
          additionalProperties:
            type: string
          description: Additional metadata for the hold
      required:
      - id
      - object
      - status
      - target_type
      - target_id
      - created_at
      - updated_at
      additionalProperties: false
  securitySchemes:
    basic_auth:
      type: http
      scheme: basic