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

# Issue Access Token

`POST /oauth/v1/token`

Issue an OAuth access token using client credentials grant. Use HTTP Basic Authentication with your client_id and client_secret.

## Response `200`

Successfully issued access token

- OAuthTokenResponse — OAuth2 token response following RFC 6749. Overrides alias_generator to keep snake_case field names (not camelCase).
  - `access_token` string, required — The access token issued by the authorization server
  - `token_type` string, required — The type of token issued (always 'bearer')
  - `expires_in` integer, required — The lifetime in seconds of the access token
  - `scope` string, nullable — Space-separated list of scopes granted

## Other responses

- `400` — Invalid grant type
- `401` — Invalid client credentials
- `403` — Unauthorized scopes requested
- `422` — Validation Error

---

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