LogoLogo
  • Introduction
  • Core Concepts
  • Partner setup
  • Tutorials [WIP]
    • Create Identities
    • Create a Blockchain Address
    • Payout Service
  • Public Mint Widget
    • Getting started
    • Embed Widget
      • Deposit of funds
      • Withdraw of funds
  • Public Mint API
    • Getting started
    • Creating identities
    • Connecting to the blockchain
      • Running your own client node
    • Executing Transactions
      • Depositing
      • Wallet Transactions
      • Withdrawing
    • Sandbox
    • API Reference
      • Identities
      • Operations
      • Transfer Methods
      • Transactions
      • Withdrawals (deprecated)
      • Verifications
      • Identity Relations
      • Documents
      • Deposits (deprecated)
      • Authentication
      • Pagination
      • Errors
      • Core Resources
    • Webhooks
  • Public Mint Blockchain
    • Getting started
    • Transacting
    • Configuring Metamask for the Public Mint blockchain
    • Interoperability [WIP]
  • Other Information
    • Public Mint Wallet
    • Users and Accounts
Powered by GitBook
On this page
  • Table of contents:
  • Introduction
  • Operations

Was this helpful?

  1. Public Mint API
  2. API Reference

Operations

Table of contents:

  • POST /operations/validate

  • POST /operations/activate

Introduction

This API provides operations management functionalities.

Operations

POST /operations/validate

Validate operation for a certain identity.

Request Parameters

Path parameters

Name
Type
Description
Constraints
Required

action

String

Operation action.

Enum: [create,confirm,cancel]

true

code

String

Operation code.

Enum: [deposit:wire,deposit:stablecoin,withdrawal:wire,withdrawal:stablecoin]

true

identityId

String

Identity id.

true

Response Options

204 OK

Request example:

POST <hostname>/operations/validate

Request example:

{
  "action": "create",
  "code": "deposit:wire",
  "identityId": "b0287254-df04-4793-8fbe-afa844150c91"
}

POST /operations/activate

Activate operation for a certain identity.

Request Parameters

Path parameters

Name
Type
Description
Constraints
Required

code

String

Operation code.

Enum: [deposit:wire,deposit:stablecoin,withdrawal:wire,withdrawal:stablecoin]

true

identityId

String

Identity id.

true

Response Options

204 OK

Request example:

POST <hostname>/operations/validate

Request example:

{
  "code": "deposit:wire",
  "identityId": "b0287254-df04-4793-8fbe-afa844150c91"
}
PreviousIdentitiesNextTransfer Methods

Last updated 2 years ago

Was this helpful?