PolySign book transfer confirmation API

The book transfer confirmation API from PolySign — 4 operation(s) for book transfer confirmation.

Operations 4

GET /v1/book_transfer_confirmations/{book_transfer_id} Get the detail of a book transfer confirmation on AtomicNet.
GET /v1/book_transfer_confirmations/list Get the detail of all book transfer confirmations on AtomicNet.
GET /v1/book_transfer_confirmations/list/local Get the detail of all book transfer confirmations involved by this node on AtomicNet.
PUT /v1/book_transfer_confirmations/ Release a book transfer confirmation on execution after being memorialized on ABC.

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/polysign-book-transfer-confirmation-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

polysign-book-transfer-confirmation-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: The API Server as the interface to interact with AtomicNet
  license:
    name: PolySign License
    url: https://polysign.io/licenses/LICENSE-1.0
  title: AtomicNet API Server book transfer confirmation API
  version: 5ba508e7771507febd8e2056c369fffd575b4272
security:
- OAuth2:
  - participant
tags:
- name: book transfer confirmation
paths:
  /v1/book_transfer_confirmations/{book_transfer_id}:
    get:
      summary: Get the detail of a book transfer confirmation on AtomicNet.
      tags:
      - book transfer confirmation
      parameters:
      - name: book_transfer_id
        in: path
        description: The identifier of the book transfer.
        required: true
        schema:
          type: string
      responses:
        '200':
          description: The book transfer confirmation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BookTransferConfirmation'
  /v1/book_transfer_confirmations/list:
    get:
      summary: Get the detail of all book transfer confirmations on AtomicNet.
      tags:
      - book transfer confirmation
      parameters:
      - name: status
        in: query
        description: The specified status to be filtered on.
        example: pending
        schema:
          type: string
      responses:
        '200':
          description: A list of book transfer confirmations.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BookTransferConfirmationList'
  /v1/book_transfer_confirmations/list/local:
    get:
      summary: 'Get the detail of all book transfer confirmations involved by this node on

        AtomicNet.

        '
      tags:
      - book transfer confirmation
      parameters:
      - name: status
        in: query
        description: The specified status to be filtered on.
        example: pending
        schema:
          type: string
      responses:
        '200':
          description: A list of book transfer confirmations.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BookTransferConfirmationList'
  /v1/book_transfer_confirmations/:
    put:
      summary: 'Release a book transfer confirmation on execution after

        being memorialized on ABC.

        '
      tags:
      - book transfer confirmation
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BookTransferConfirmation'
      responses:
        '200':
          description: The book transfer confirmation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BookTransferConfirmation'
components:
  schemas:
    BookTransferConfirmation:
      type: object
      properties:
        abc_memorial_digest:
          type:
          - string
          - 'null'
          default: null
          description: The digest been memorialized in ABC.
        metadata:
          description: Metadata for the associated record object.
          allOf:
          - $ref: '#/components/schemas/Metadata7'
        schema_version:
          type: integer
          default: 1
          description: Version for the message schema.
        signature:
          default: null
          description: Signature for the associated record object.
          allOf:
          - $ref: '#/components/schemas/AbcSignature7'
        abc_memorialization_block:
          type:
          - integer
          - 'null'
          default: null
          description: The block height the memorialization localed.
        record:
          description: The record object for the book_transfer confirmation.
          allOf:
          - $ref: '#/components/schemas/BookTransferConfirmationRecord'
      required:
      - record
    OnetimeIdMapList7:
      type: object
      properties:
        id_maps:
          type: array
          description: The list of ID mappings.
          items:
            $ref: '#/components/schemas/OnetimeIdMap8'
      description: List of ID mappings.
    BookTransferConfirmationList:
      type: object
      properties:
        book_transfer_confirmations:
          type: array
          items:
            $ref: '#/components/schemas/BookTransferConfirmation'
      required:
      - book_transfer_confirmations
    OnetimeIdMap8:
      type: object
      properties:
        one_time_id:
          type: string
          description: The one time ID.
        real_id:
          type: string
          description: The real ID.
      required:
      - one_time_id
      - real_id
      description: ID mapping.
    AbcSignature7:
      type: object
      properties:
        digest_type:
          type: string
          description: The ABC digest type.
        abc_account_id:
          type: string
          description: Identifier of the ABC account.
        signature:
          type: string
          description: Signature of the digest.
        digest:
          type: string
          description: The digest to be signed.
        schema_version:
          type:
          - integer
          - 'null'
          default: 1
          description: Version for the message schema.
      required:
      - abc_account_id
      - digest
      - digest_type
      - signature
    BookTransferConfirmationRecord:
      type: object
      properties:
        book_transfer_id:
          type: string
          format: uuid
          description: Identifier of the book_transfer this confirmation involved.
        asset_quantity:
          type: number
          description: The quantity of the asset to be traded.
        beneficiary_auth_id:
          type: string
          format: uuid
          description: Identifier of the beneficiary authorization of the taken order.
        asset_id:
          type: string
          description: Identifier of the asset to be traded.
        escrow_auth_id:
          type: string
          format: uuid
          description: Identifier of the escrow authorization of the given order.
      required:
      - asset_id
      - asset_quantity
      - beneficiary_auth_id
      - book_transfer_id
      - escrow_auth_id
    Metadata7:
      type: object
      properties:
        investor_ids:
          default: null
          description: The investor id mappings.
          allOf:
          - $ref: '#/components/schemas/OnetimeIdMapList7'
        book_operator_id:
          type:
          - string
          - 'null'
          format: uuid
          default: null
          description: Identifier for the associated Book Operator node.
        request_id:
          type:
          - string
          - 'null'
          default: null
          description: Unique identifier for the request.
        exchange_id:
          type:
          - string
          - 'null'
          format: uuid
          default: null
          description: Identifier for the associated Exchange node.
        status:
          type:
          - string
          - 'null'
          default: null
          description: State status for the record object.
        trade_portal_id:
          type:
          - string
          - 'null'
          format: uuid
          default: null
          description: Identifier for the associated Trade Portal node.
        commission:
          type:
          - number
          - 'null'
          default: null
          description: Order commissison.
        real_investor_id:
          type:
          - string
          - 'null'
          default: null
          description: Original identifier for the investor.
        expired:
          type:
          - boolean
          - 'null'
          default: false
          description: Expiry status for the record object.
  securitySchemes:
    OAuth2:
      type: oauth2
      description: OAuth 2.0 with the client credentials grant flow.
      flows:
        clientCredentials:
          tokenUrl: /v1/auth/token
          scopes:
            participant: Grants access to participant.