---
title: "Issue Token"
method: POST
path: "/api/v1/tokenization/tokens"
tags: ["tokenization"]
---

# Issue Token

`POST /api/v1/tokenization/tokens`

Start the issue-token workflow. Returns the workflowId, tokenId, and status.

## Headers

- `x-sdk-version` string, required

## Request body

- IssueNewTokenRequestBody
  - `networkId` string, required
  - `addressId` string, required
  - `clientShare` string, required
  - `createParams` CreateParams, required
    - `initializeParams` ConstructorParam[], required
      - `name` string, required
      - `type` string, required
      - `value` string, required
  - `deploymentId` string, required
  - `displayName` string, required
  - `useGasless` boolean, required
  - `fee` string, required
  - `feeLevel` 'LOW' | 'MEDIUM' | 'HIGH'

## Response `202`

Issue token workflow started

- IssueTokenWorkflowResponseDto
  - `workflowResult` WorkflowStartResultDto, required
    - `workflowId` string, required — Workflow ID
    - `operationId` string, required — Operation ID (e.g. deploymentId, collectionId, mintId, writeCallId)
    - `status` 'started' | 'already_running', required — Workflow status
    - `message` string, required — Human-readable status message

## Other responses

- `400` — Bad request or validation failed. **Applicable error codes and client messages** The response body contains one of the following error codes and the corresponding client-facing message. | Code | Client message | |------|----------------| | ERR-010 | The request could not be processed. | | ERR-310 | Contract does not have a valid ABI. | | ERR-311 | Contract initialize function not found. | | ERR-312 | Required initialization parameters are missing. | | ERR-313 | Parameter types do not match the expected types. | | ERR-146 | Contract deployment is still in progress. |
- `401` — Unauthorized – invalid or missing token. **Applicable error codes and client messages** The response body contains one of the following error codes and the corresponding client-facing message. | Code | Client message | |------|----------------| | ERR-008 | You need to sign in to continue. | | ERR-011 | Your session is invalid or expired. Please sign in again. |
- `403` — Forbidden – insufficient permissions. **Applicable error codes and client messages** The response body contains one of the following error codes and the corresponding client-facing message. | Code | Client message | |------|----------------| | ERR-009 | You don't have permission to do that. | | ERR-410 | Error occurred |
- `404` — Resource not found. **Applicable error codes and client messages** The response body contains one of the following error codes and the corresponding client-facing message. | Code | Client message | |------|----------------| | ERR-013 | Organization not found. | | ERR-066 | Contract not found. | | ERR-096 | Address not found. |
- `500` — Internal server error. **Applicable error codes and client messages** The response body contains one of the following error codes and the corresponding client-facing message. | Code | Client message | |------|----------------| | ERR-019 | Something went wrong on our side. | | ERR-186 | Failed to issue new token. | | ERR-999 | An unexpected error occurred. Please try again. |

---

[API](https://skmtc.net/oumla/apis/oumla-core-server.md) · [All operations](https://skmtc.net/oumla/apis/oumla-core-server/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/oumla/oumla-core-server/revisions/2154835230b5/schema)
