---
source_url: https://www.pubnub.com/docs/sdks/posix-cpp/api-reference/access-manager
title: Access Manager v3 API for POSIX C++ SDK
updated_at: 2026-05-22T11:07:22.332Z
sdk_name: PubNub POSIX C++ SDK
---

> Documentation Index
> For a curated overview of PubNub documentation, see: https://www.pubnub.com/docs/llms.txt
> For the full list of all documentation pages, see: https://www.pubnub.com/docs/llms-full.txt


# Access Manager v3 API for POSIX C++ SDK

PubNub POSIX C++ SDK

:::warning Access Manager isn't enabled by default
Without it, PubNub resources on this keyset have no access controls and clients can reach
channels
and metadata without permission checks. Enable Access Manager in
[Admin Portal](https://admin.pubnub.com/)
before deploying to production.
:::

Access Manager allows you to enforce security controls for client access to resources within the PubNub Platform. With Access Manager v3, your servers (that use a PubNub instance configured with a secret key) can grant their clients tokens with embedded permissions that provide access to individual PubNub resources:

* For a limited period of time.
* Through resource lists or patterns (regular expressions).
* In a single API request, even if permission levels differ (`read` to `channel1` and `write` to `channel2`).

You can add the [author_uuid](https://www.pubnub.com/docs/general/security/access-control#authorized-uuid) parameter to the grant request to restrict token usage to one client with a given UUID. Only this `author_uuid` can use the token to make API requests for the specified resources and permissions.

For more information about Access Manager v3, refer to [Manage Permissions with Access Manager v3](https://www.pubnub.com/docs/general/security/access-control).

## Grant token

:::note Requires Access Manager add-on
This method requires that the *Access Manager* add-on is enabled for your key in the [Admin Portal](https://admin.pubnub.com/). Read the [support page](https://support.pubnub.com/hc/en-us/articles/360051974791-How-do-I-enable-add-on-features-for-my-keys-) on enabling add-on features on your keys.
:::

:::warning Requires Secret Key authentication
Granting permissions to resources should be done by administrators whose SDK instance has been [initialized](https://www.pubnub.com/docs/sdks/posix-cpp/api-reference/configuration) with a **Secret Key** (available on the [Admin Portal](https://admin.pubnub.com/) on your app's keyset).
:::

The `grant_token()` method generates a time-limited authorization token with an embedded access control list. The token defines time to live (`ttl_minutes`), `author_uuid`, and a set of permissions giving access to one or more resources:

* `channels`
* `groups`
* `uuids` (other users' object metadata, such as their names or avatars)

Only this `author_uuid` will be able to use the token with the defined permissions. The authorized client will send the token to PubNub with each request until the token's `ttl_minutes` expires. Any unauthorized request or a request made with an invalid token will return a `403` with a respective error message.

###### Permissions

The grant request allows your server to securely grant your clients access to the resources within the PubNub Platform. There is a limited set of operations the clients can perform on every resource:

| Resource | Permissions |
| --- | --- |
| `channels` | `read`, `write`, `get`, `manage`, `update`, `join`, `delete` |
| `groups` | `read`, `manage` |
| `uuids` | `get`, `update`, `delete` |

For permissions and API operations mapping, refer to [Manage Permissions with Access Manager v3](https://www.pubnub.com/docs/general/security/access-control#permissions).

###### TTL (time to live)

The `ttl_minutes` (time to live) parameter defines how many minutes the permissions remain valid. After expiration, the client must get a new token to maintain access. `ttl_minutes` is required for every grant call. There is no default value. The maximum value is 43,200 (30 days).

For more details, see [TTL in Access Manager v3](https://www.pubnub.com/docs/general/security/access-control#ttl).

###### RegEx patterns

Use regular expressions (RegEx) to specify permissions by pattern instead of listing each resource. Define RegEx permissions for a given resource type in the grant request. Patterns are evaluated on the server using [RE2-style syntax](https://github.com/google/re2/wiki/Syntax); backreferences and lookaround assertions are not supported.

For more details, see [RegEx in Access Manager v3](https://www.pubnub.com/docs/general/security/access-control#regex).

###### Authorized UUID

Setting an `author_uuid` in the token specifies which client should use this token in every request to PubNub. If you do not set `author_uuid` during the grant request, the token can be used by any client with any UUID. Restrict tokens to a single `author_uuid` to prevent impersonation.

For more details, see [Authorized UUID in Access Manager v3](https://www.pubnub.com/docs/general/security/access-control#authorized-uuid).

### Method(s)

```cpp
enum pubnub_res pubnub_grant_token(pubnub_t* pb, char const* perm_obj)
```

| Parameter | Description |
| --- | --- |
| `pb` *Type: `pubnub_t*` | Pointer to the PubNub context. Can't be NULL. |
| `perm_obj` *Type: `const char*` | Pointer to `string` with the permissions. |

:::note Required key/value mappings
For a successful grant request, you must specify permissions for at least one `uuid`, `channel`, or `group`, either as a resource list or as a pattern (RegEx).
:::

### Sample code

```cpp
struct pam_permission ch_perm = { ch_perm.read=true };
int perm_my_channel = pubnub_get_grant_bit_mask_value(ch_perm);
int ttl_minutes = 15; // Max value for ttl_minutes is 43,200 minutes (30 days)
char perm_obj[2000];
char* author_uuid = "my_author_uuid";
sprintf(perm_obj,"{\"ttl\":%d, \"uuid\":\"%s\", \"permissions\":{\"resources\":{\"channels\":{ \"my_channel\":%d }, \"groups\":{}, \"users\":{ }, \"spaces\":{}}, \"patterns\":{\"channels\":{}, \"groups\":{}, \"users\":{}, \"spaces\":{}},\"meta\":{}}}", ttl_minutes, author_uuid, perm_my_channel);
pubnub::futres futgres = gb.grant_token(perm_obj);
res = futgres.await();
std::string tkn = "";
if (PNR_OK == res) {
    tkn = gb.get_grant_token();
    std::cout << "Grant Token done! token = " << tkn << std::endl;
}
```

### Returns

```json
p0thisAkFl043rhDdHRsCkNyZXisRGNoYW6hanNlY3JldAFDZ3Jwsample3KgQ3NwY6BDcGF0pERjaGFuoENnctokenVzcqBDc3BjoERtZXRhoENzaWdYIGOAeTyWGJI
```

### Other examples

#### Grant an authorized client different levels of access to various resources in a single call

The code below grants `my-authorized-uuid`:

* Read access to `channel-a`, `channel-group-b`, and get to `uuid-c`.
* Read/write access to `channel-b`, `channel-c`, `channel-d`, and get/update to `uuid-d`.

```cpp
struct pam_permission cha_perm = {cha_perm.read=true };
struct pam_permission cgb_perm = {cgb_perm.read=true };
struct pam_permission uidc_perm = {uidc_perm.get=true };

struct pam_permission chb_perm = {chb_perm.read=true, chb_perm.write=true };
struct pam_permission chc_perm = {chc_perm.read=true, chc_perm.write=true };
struct pam_permission chd_perm = {chd_perm.read=true, chd_perm.write=true };
struct pam_permission uidd_perm = {uidd_perm.get=true, uidd_perm.update=true };

int perm_cha = pubnub_get_grant_bit_mask_value(cha_perm);
int perm_chb = pubnub_get_grant_bit_mask_value(chb_perm);
int perm_chc = pubnub_get_grant_bit_mask_value(chc_perm);
int perm_chd = pubnub_get_grant_bit_mask_value(chd_perm);

int perm_cgb = pubnub_get_grant_bit_mask_value(cgb_perm);

int perm_uidc = pubnub_get_grant_bit_mask_value(uidc_perm);
int perm_uidd = pubnub_get_grant_bit_mask_value(uidd_perm);

int ttl_minutes = 15;
char perm_obj[2000];
char* author_uuid = "my_author_uuid";
sprintf(perm_obj,"{\"ttl\":%d, \"uuid\":\"%s\", \"permissions\":{\"resources\":{\"channels\":{ \"channel-a\":%d, \"channel-b\":%d, \"channel-c\":%d, \"channel-d\":%d }, \"groups\":{ \"channel-group-b\":%d }, \"uuids\":{ \"uuid-c\":%d, \"uuid-d\":%d }}, \"patterns\":{\"channels\":{ }, \"groups\":{ }, \"uuids\":{ }},\"meta\":{ }}}", ttl_minutes, author_uuid, perm_cha, perm_chb, perm_chc, perm_chd, perm_cgb, perm_uidc, perm_uidd);
pubnub::futres futgres = gb.grant_token(perm_obj);
res = futgres.await();
std::string tkn = "";
if (PNR_OK == res) {
   tkn = gb.get_grant_token();
   std::cout << "Grant Token done! token = " << tkn << std::endl;
}
```

#### Grant an authorized client read access to multiple channels using RegEx

The code below grants `my-authorized-uuid` read access to all channels that match the `channel-[A-Za-z0-9]` RegEx pattern.

```cpp
char* author_uuid = "my-authorized-uuid";
struct pam_permission pat_ch_perm = {pat_ch_perm.read=true };

int perm_ch_pat = pubnub_get_grant_bit_mask_value(pat_ch_perm);

int ttl_minutes = 15;
char perm_obj[2000];
sprintf(perm_obj,"{\"ttl\":%d, \"uuid\":\"%s\", \"permissions\":{\"resources\":{\"channels\":{ }, \"groups\":{ }, \"uuids\":{ }}, \"patterns\":{\"channels\":{ \"channel-[A-Za-z0-9]\":%d }, \"groups\":{ }, \"uuids\":{ }},\"meta\":{ }}}", ttl_minutes, author_uuid, perm_ch_pat);
pubnub::futres futgres = gb.grant_token(perm_obj);
res = futgres.await();
std::string tkn = "";
if (PNR_OK == res) {
   tkn = gb.get_grant_token();
   std::cout << "Grant Token done! token = " << tkn << std::endl;
}
```

#### Grant an authorized client different levels of access to various resources and read access to channels using RegEx in a single call

The code below grants the `my-authorized-uuid`:

* Read access to `channel-a`, `channel-group-b`, and get to `uuid-c`.
* Read/write access to `channel-b`, `channel-c`, `channel-d`, and get/update to `uuid-d`.
* Read access to all channels that match the `channel-[A-Za-z0-9]` RegEx pattern.

```cpp
char* author_uuid = "my-authorized-uuid";
struct pam_permission cha_perm = {cha_perm.read=true };
struct pam_permission cgb_perm = {cgb_perm.read=true };
struct pam_permission uidc_perm = {uidc_perm.get=true };

struct pam_permission chb_perm = {chb_perm.read=true, chb_perm.write=true };
struct pam_permission chc_perm = {chc_perm.read=true, chc_perm.write=true };
struct pam_permission chd_perm = {chd_perm.read=true, chd_perm.write=true };
struct pam_permission uidd_perm = {uidd_perm.get=true, uidd_perm.update=true };

struct pam_permission pat_ch_perm = {pat_ch_perm.read=true };

int perm_cha = pubnub_get_grant_bit_mask_value(cha_perm);
int perm_chb = pubnub_get_grant_bit_mask_value(chb_perm);
int perm_chc = pubnub_get_grant_bit_mask_value(chc_perm);
int perm_chd = pubnub_get_grant_bit_mask_value(chd_perm);

int perm_cgb = pubnub_get_grant_bit_mask_value(cgb_perm);

int perm_uidc = pubnub_get_grant_bit_mask_value(uidc_perm);
int perm_uidd = pubnub_get_grant_bit_mask_value(uidd_perm);

int perm_ch_pat = pubnub_get_grant_bit_mask_value(pat_ch_perm);

int ttl_minutes = 15;
char perm_obj[2000];
sprintf(perm_obj,"{\"ttl\":%d, \"uuid\":\"%s\", \"permissions\":{\"resources\":{\"channels\":{ \"channel-a\":%d, \"channel-b\":%d, \"channel-c\":%d, \"channel-d\":%d }, \"groups\":{ \"channel-group-b\":%d }, \"uuids\":{ \"uuid-c\":%d, \"uuid-d\":%d }}, \"patterns\":{\"channels\":{ \"channel-[A-Za-z0-9]\":%d }, \"groups\":{ }, \"uuids\":{ }},\"meta\":{ }}}", ttl_minutes, author_uuid, perm_cha, perm_chb, perm_chc, perm_chd, perm_cgb, perm_uidc, perm_uidd, perm_ch_pat);
pubnub::futres futgres = gb.grant_token(perm_obj);
res = futgres.await();
std::string tkn = "";
if (PNR_OK == res) {
   tkn = gb.get_grant_token();
   std::cout << "Grant Token done! token = " << tkn << std::endl;
}
```

### Error responses

If you submit an invalid request, the server returns HTTP 400 with a message that identifies the missing or incorrect argument. Causes can include a RegEx issue, an [invalid timestamp](https://support.pubnub.com/hc/en-us/articles/360051973331-Why-do-I-get-Invalid-Timestamp-when-I-try-to-grant-permission-using-Access-Manager-), or incorrect permissions.

## Parse token

The `parse_token()` method decodes an existing token and returns the object containing permissions embedded in that token. The client can use this method for debugging to check the permissions to the resources or find out the token's `ttl_minutes` details.

### Method(s)

```cpp
std::string parse_token(std::string const& token)
```

| Parameter | Description |
| --- | --- |
| `token` *Type: `std::string const&` | Current token with embedded permissions. |

### Sample code

```cpp
std::string cbor_data = gb.parse_token("p0thisAkFl043rhDdHRsCkNyZXisRGNoYW6hanNlY3JldAFDZ3Jwsample3KgQ3NwY6BDcGF0pERjaGFuoENnctokenVzcqBDc3BjoERtZXRhoENzaWdYIGOAeTyWGJI");
```

### Returns

```json
{
   "version":2,
   "timestamp":1619718521,
   "ttl":15,
   "resources":{
      "user-id":{
         "create":true,
         "read":true,
         "write":true,
         "manage":true,
         "delete":true
      },
      "space-id":{
         "create":true,
         "read":true,
         "write":true,
         "manage":true,
         "delete":true
      },
      "channel-id":{
         "create":true,
         "read":true,
         "write":true,
         "manage":true,
         "delete":true
      },
      "group-id":{
         "create":true,
         "read":true,
         "write":true,
         "manage":true,
         "delete":true
      }
   },
   "patterns":{
      "user-pattern":{
         "create":true,
         "read":true,
         "write":true,
         "manage":true,
         "delete":true
      },
      "space-pattern":{
         "create":true,
         "read":true,
         "write":true,
         "manage":true,
         "delete":true
      },
      "channel-pattern":{
         "create":true,
         "read":true,
         "write":true,
         "manage":true,
         "delete":true
      },
      "group-pattern":{
         "create":true,
         "read":true,
         "write":true,
      }
   }
}
```

### Error Responses

If you receive an error while parsing the token, it may suggest that the token is damaged. In that case, request the server to issue a new one.

## Set token

The `set_auth_token()` method is used by the client devices to update the authentication token granted by the server.

### Method(s)

```cpp
void set_auth_token(std::string const& token)
```

| Parameter | Description |
| --- | --- |
| `token` *Type: `std::string const&` | Current token with embedded permissions. |

### Sample code

```cpp
pb.set_auth_token("p0thisAkFl043rhDdHRsCkNyZXisRGNoYW6hanNlY3JldAFDZ3Jwsample3KgQ3NwY6BDcGF0pERjaGFuoENnctokenVzcqBDc3BjoERtZXRhoENzaWdYIGOAeTyWGJI")
```

### Returns

This method doesn't return any response value.

## Terms in this document

* **Access Manager** - A cryptographic, token-based permission administrator that allows you to regulate clients' access to PubNub resources, such as channels, channel groups, and user IDs.
* **Action** - The type of activity (procedure) to execute when a condition is satisfied (for example, sending a message).
* **Billing alert notification** - A means of informing a user that a billing alert has been triggered. Before notifications can happen, a billing alert must be triggered first.
* **Business Object** - A container for data fields and metrics that defines aggregations and data sources.
* **Channel** - A pathway for sending and receiving messages between devices, created automatically when you first use it, that can handle any number of users and messages for different communication needs, like 1-1 text chats, group conversations, and other data streaming.
* **Channel pattern** - A way to group and analyze channel data to track performance metrics like message counts and user engagement over time with PubNub Insights.
* **Condition** - A requirement that must be satisfied or evaluated to true for an action to be executed. Input in a decision table.
* **Cryptor** - An implementation of a specific cryptographic algorithm used for data encryption/decryption that adheres to a standard interface.
* **Dashboard** - A collection of widgets (charts) that give an overview of the metrics one is evaluating.
* **Data fields** - Data you want Illuminate to track. These can be quantitative (measures), like "Number" or "Timestamp" or qualitative (dimensions) values, like "String" that can be used to categorize and segment data. Data fields can be aggregated and calculated.
* **Decision** - A collection (or decision table) of conditions and actions. When conditions are satisfied, the corresponding actions are triggered as per defined rules.
* **End Customer** - A customer of a PubNub partner. End customers do not have direct access to the Admin Portal. Instead, they interact with PubNub products—such as Illuminate—through the partner’s portal, where PubNub services are embedded. They can create PubNub objects only within this partner-provided environment.
* **Entity** - A subscribable object within a PubNub SDK that allows you to perform context-specific operations.
* **Listener** - A function or objectthat reacts to events or messages, like new chat messages or connection updates, letting your app respond in real-time.
* **Mapped/Unmapped** - Whether the data source for a data field has been defined or the action has been configured.
* **MCP Server** - A Model Context Protocol server that coordinates communication and synchronization between AI agents, clients, or services, such as Cursor IDE and Windsurf.
* **Message** - A unit of data transmitted between clients or between a client and a server in PubNub, containing information such as text, binary data, or structured data formats like JSON. Messages are sent over channels and can be tracked for delivery and read status.
* **Metric** - What exactly is evaluated using measures and dimensions (collectively called data fields), as well as aggregation functions.
* **Module** - A Functions v1 container that groups related functions for configuration and deployment on an app’s keysets.
* **Origin** - The subdomain used to establish a connection to the PubNub network that allows your application's traffic to appear like it's coming from your own domain.
* **Package** - A Functions v2 container that groups Functions, tracks Revisions, and is deployed to keysets.
* **Partner** - A PubNub customer who resells PubNub products, such as Illuminate, to their own customers. Partners have access to the Admin Portal, enabling them to create and manage PubNub objects for themselves or on behalf of their end customers.
* **Publish Key** - A unique identifier that allows your application to send messages to PubNub channels. It's part of your app's credentials and should be kept secure.
* **PubNub** - PubNub is a real-time messaging platform that provides APIs and SDKs for building scalable applications. It handles the complex infrastructure of real-time communication, including: Message delivery and persistence, Presence detection, Access control, Push notifications, File sharing, Serverless processing with Functions and Events & Actions, Analytics and monitoring with BizOps Workspace, AI-powered insights with Illuminate.
* **Push token** - A device identifier issued by a push provider (APNs or FCM) used to register a device for receiving mobile push notifications.
* **Rule** - A definition (row in a decision table) stating which action should be triggered for which condition.
* **Service Integration** - A machine identity that represents a program or service consuming the Admin API, scoped to your account and authenticated using expirable API keys with configurable permissions.
* **Signal** - A non-persistent message limited to 64 bytes designed for high-volume usecases where the the most recent data is relevant, like GPS location updates.
* **Subscribe Key** - A unique identifier that allows your application to receive messages from PubNub channels. It's part of your app's credentials and should be kept secure.
* **Timetoken** - A unique identifier for each message that represents the number of 100-nanosecond intervals since January 1, 1970, for example, 16200000000000000.
* **Trigger details** - A set of predefined criteria for a given billing alert. When met, billing alert notifications are generated.
* **User** - An individual or entity that interacts with a system, application, or service. In PubNub, a user typically refers to someone who sends or receives messages through the platform, identified by a unique user ID or username.
* **User ID** - UTF-8 encoded, unique string of up to 92 characters used to identify a single client (end user, device, or server) that connects to PubNub.
* **Vibe Coding** - A way to build applications in an intuitive, relaxed, and improvisational manner, using AI tools and natural language descriptions.