---
title: "Issue a Token"
method: POST
path: "/v1/oauth/token"
tags: ["Authentication"]
---

# Issue a Token

`POST /v1/oauth/token`

Generate an access token using client credentials

## Request body

- object
  - `client_id` string, required — Client ID
  - `client_secret` string, password, required — Client Secret

## Response `200`

Token issued successfully

- TokenResponse
  - `access_token` string
  - `access_token_ttl` string, date-time
  - `refresh_token` string
  - `refresh_token_ttl` string, date-time
  - `current_time` string, date-time

## Other responses

- `401` — Authentication failed due to invalid credentials
- `422` — Failed due to a formatting error.

---

[API](https://skmtc.net/fin/apis/fin-com-api.md) · [All operations](https://skmtc.net/fin/apis/fin-com-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/fin/fin-com-api/revisions/6e69503ee7b8/schema)
