API Tokens | Coolify

API Tokens

@if (!$isApiEnabled)
API is disabled. If you want to use the API, please enable it in the Settings menu.
@else
Tokens are created with the current team as scope. You will only have access to this team's resources.

New Token

Create New Token
Permissions :
@if ($permissions) @foreach ($permissions as $permission) @if ($permission === '*')
Root access, be careful!
@else
{{ $permission }}
@endif @endforeach @endif

Token Permissions

@if (session()->has('token'))
Please copy this token now. For your security, it won't be shown again.
{{ session('token') }}
@endif

Issued Tokens

@forelse ($tokens as $token)
Description: {{ $token->name }}
Last used: {{ $token->last_used_at ? $token->last_used_at->diffForHumans() : 'Never' }}
@if ($token->abilities) Abilities: @foreach ($token->abilities as $ability)
{{ $ability }}
@endforeach @endif
@empty
No API tokens found.
@endforelse
@endif