---
title: "Get Personal Access Token (PAT)"
slug: "getpersonalaccesstokenpat"
updated: 2026-04-16T06:32:49Z
published: 2026-04-16T06:32:49Z
---

> ## Documentation Index
> Fetch the complete documentation index at: https://help.12dsynergy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Personal Access Token (PAT)

This tutorial demonstrates how to get Personal Access Token(s) via the RESTful API.

> [!NOTE]
> Additional API documentation
> 
> To get a list of most of the API requests available, with the 12d Synergy server running, browse [http://synergy.myserver.com/api-docs/ui/index](http://localhost:8080/api-docs/ui/index).
> 
> (Replace [synergy.myserver.com](http://synergy.myserver.com/) with the external server address and update the port numbers if necessary.)

### 1.1. Get PAT

This request is in the API documentation under Authentication.

**Sample Request**

```SampleRequest
curl --location 'http://{your-server-here}/api/v1/auth/getPersonalAccessTokens' \

--header 'Authorization: Bearer <your-token-here>'
```

Click ![](https://cdn.document360.io/36833d89-59e3-46a5-b491-e9aa1b524a85/Images/Documentation/expand.png) in the line below to see the code.

****Sample Response****

```SampleResponse
[
    {
        "UserID": {
            "_id": 1,
            "_server_id": 1,
            "_server_guid": "b993c729-bf98-490c-989d-5621e3b48139",
            "IDString": "1_1"
        },
        "CreatedOn": "2025-03-14T10:53:38.823+08:00",
        "Expiry": "2025-09-10T10:53:38.67+08:00",
        "Name": "Teams integ",
        "ExpiryReminderState": 0,
        "ID": 1
    },
    {
        "UserID": {
            "_id": 1,
            "_server_id": 1,
            "_server_guid": "b993c729-bf98-490c-989d-5621e3b48139",
            "IDString": "1_1"
        },
        "CreatedOn": "2025-04-30T13:21:44.467+08:00",
        "Expiry": "2025-05-02T13:21:44.36+08:00",
        "Name": "asddadas",
        "ExpiryReminderState": 1,
        "ID": 2
    }
]
```
