Allmine API
Authentication

Access token yenile

**Production uyarisi:** Bu endpoint veri degistirir veya operasyon tetikleyebilir. API Playground icinde Production server seciliyse gercek production verisi etkilenir; test icin Development server kullanin. Refresh token kullanarak yeni access token ve refresh token alır.

POST
/api/v1/auth/refresh

Production uyarisi: Bu endpoint veri degistirir veya operasyon tetikleyebilir. API Playground icinde Production server seciliyse gercek production verisi etkilenir; test icin Development server kullanin.

Refresh token kullanarak yeni access token ve refresh token alır.

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

refreshToken*string

Refresh token

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/api/v1/auth/refresh" \  -H "Content-Type: application/json" \  -d '{    "refreshToken": "sample"  }'
{
  "accessToken": "sample",
  "refreshToken": "sample",
  "expiresIn": 3600,
  "refreshExpiresIn": 2592000
}
{
  "isSuccess": false,
  "statusCode": 400,
  "data": null,
  "errors": [
    "Validation failed"
  ],
  "timestamp": "2026-01-15T10:30:00.000Z"
}
Empty
{
  "isSuccess": false,
  "statusCode": 404,
  "data": null,
  "errors": [
    "Resource not found"
  ],
  "timestamp": "2026-01-15T10:30:00.000Z"
}
{
  "isSuccess": false,
  "statusCode": 409,
  "data": null,
  "errors": [
    "Resource already exists or cannot be changed in its current state"
  ],
  "timestamp": "2026-01-15T10:30:00.000Z"
}