Show examples in:
Javascript HTTP
Endpoint info
Available examples

Content Management API > API token

Retrieve an API token

Returns

Returns a resource object of type access_token

Examples

1
import { buildClient } from "@datocms/cma-client-node";
2
3
async function run() {
4
const client = buildClient({ apiToken: process.env.DATOCMS_API_TOKEN });
5
6
const accessTokenId = "312";
7
8
const accessToken = await client.accessTokens.find(accessTokenId);
9
10
// Check the 'Returned output' tab for the result ☝️
11
console.log(accessToken);
12
}
13
14
run();
1
{
2
id: "312",
3
name: "Read-only API token",
4
hardcoded_type: "",
5
can_access_cda: true,
6
can_access_cda_preview: true,
7
can_access_cma: true,
8
role: { type: "role", id: "34" },
9
}