---
title: "Obtain your `accessToken`"
method: POST
path: "/api/v1/auth/token"
tags: ["Authentication"]
---

# Obtain your `accessToken`

`POST /api/v1/auth/token`

## Request body

- object
  - `clientId` string, required
  - `clientSecret` string, required

## Response `200`

Successfully created access token

- Token
  - `accessToken` string, required — Access token, required to interact with our endpoints.
  - `refreshToken` string, required — Refresh token, required to get a new access token.
  - `accessTokenExpirationDate` string, date-time, required — Expiration date of access token (1 hour)
  - `refreshTokenExpirationDate` string, date-time, required — Expiration date of refresh token (24 hours)

## Other responses

- `400` — The request is invalid
- `401` — Consumer with provided credentials was not found

---

[API](https://skmtc.net/monta/apis/monta-partner-api.md) · [All operations](https://skmtc.net/monta/apis/monta-partner-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/monta/monta-partner-api/revisions/517e18f11015/schema)
