Profile / API tokens

API tokens

Personal access tokens for the JSON API at /api/contacts.

@if (session('plainTextToken'))
Your new token
Copy it now — it won't be shown again.
{{ session('plainTextToken') }}
@endif Create a token Pick a memorable name (e.g. "Zapier", "Local dev").
@csrf
Name
Create token
Existing tokens @if ($tokens->isEmpty())

No tokens yet.

@else
    @foreach ($tokens as $token)
  • {{ $token->name }}
    Created {{ $token->created_at->diffForHumans() }} @if ($token->last_used_at) · last used {{ $token->last_used_at->diffForHumans() }} @else · never used @endif
    @csrf @method('DELETE') Revoke
  • @endforeach
@endif