---
title: "Get User Permission"
slug: "getuserpermission"
updated: 2026-04-15T06:34:50Z
published: 2026-04-15T06:34:50Z
---

> ## 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 User Permission

This tutorial demonstrates how to get user permission using Job ID via the RESTful API.

The commands are provided in curl and can be run from the command prompt when the 12d Synergy Server is running (or in a batch script).

> [!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. Getting the Personal Access Token to access API

The tutorial for getting the PAT is here: [Generate PAT in Web client](/v1/docs/webclientgenerateapersonalaccesstokenpatinwebclientdoc).

### 1.2. Get the Job ID from the List of Jobs

Refer to [Search Jobs](/v1/docs/searchjobsdoc) to get the required job ID.

### 1.3. Getting User Permissions

This request is available in the API Documentation under Tasks marked 'Get user permission'.

Once you have the value for job_id, it should be included in the URL.

**Sample Request**

```SampleRequest
curl --location 'http://localhost:8080/api/v1/tasks/getPermission/{job-id-here}' \

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

--header 'Content-Type: application/json' \
```

Below is a sample response when getting user permission. Click ![](https://cdn.document360.io/36833d89-59e3-46a5-b491-e9aa1b524a85/Images/Documentation/expand.png) in the line below to see the code.

****Sample Response****

```plaintext
{

    "can_create": true,

    "can_edit": true,

    "can_delete": true,

    "admin": true,

    "can_view": true,

    "can_read": true,

    "can_write": true,

    "can_leave_notes": true,

    "can_update_attributes": true

}
```
