---
sourceDocument: Australia Sales and Order Management
sourceDocumentLink: https://servicenow-prod.fluidtopics.net/r/de-DE/order-management

 Release :

    - australia

ft:locale :

    - de-DE

ft:publication_title :

    - Australia Sales and Order Management

ft:clusterId :

    - omgmt

bundleId :

    - omgmt

workflow :

    - Customer and Industry


---

# Intro to admin API keys

# Intro to admin API keys {#ariaid-title1}

* Freigeben Version: Australia
* 
* Aktualisiert 12. März 2026
* 
* ![](https://www.servicenow.com/docs/portal-asset/ico-clock) 2 Minuten Lesedauer

You can use admin API calls to access Admin functionality without using the Admin UI interface and a browser.

CPQ provides admin API keys that you can use to access admin functionality via API calls instead of using a browser and the CPQ Admin interface.

For an introduction to CPQ admin API keys, view the following video:

[Admin API keys](https://www.youtube.com/watch?v=8BwQgKw4Dak)

## Admin API keys page {#cpq-admin-api-keys__section_kvl_1cx_2hc}

To get to the Admin API Keys page in CPQ, click the arrow to expand the Utilities section in CPQ Admin. The Admin API Keys tab appears in the menu.

## Add a new admin API key {#cpq-admin-api-keys__section_o4h_mcx_2hc}

To add a new admin API key, click New at the top of the screen.

All parameters are required.

1. Name: the name of the admin API key
2. User ID
3. Expiration Date: the expiration date of the key
4. Permissions: the permissions assigned to the key

{#cpq-admin-api-keys__ol_gn1_vcx_2hc}

Choose the permissions that fit your use case before clicking Save.

## Admin API key permissions {#cpq-admin-api-keys__section_dxt_cdx_2hc}

1. Read (required, default): read-only access, typically for GET requests
2. Edit: create, read, update, and delete access for most objects, including fields and rules
3. Deploy: allows the deployment of blueprints and access to deployment history
4. Bulk: allows importing and exporting data, such as managed tables, to and from CPQ
5. Admin: full permissions to all Admin functionality
6. End User Data: access to end user data APIs

{#cpq-admin-api-keys__ol_vbg_kdx_2hc}

When you are finished assigning permissions, click Save. The dialog box updates to show the new admin API key.

1. View the admin API key
2. Copy the key to the clipboard
3. Close the dialog box

{#cpq-admin-api-keys__ol_y3c_g2x_2hc}  
Wichtig:  
You can copy an admin API key only when it is created. Make sure to copy and store the key.

## Accessing admin APIs by using API keys {#cpq-admin-api-keys__section_lh4_vdx_2hc}

To use an admin API key in API requests, use the API key with Bearer Token authentication.

* Header: Authorization Header
* Key: authorization
* Value: Bearer \<Admin API key\>

{#cpq-admin-api-keys__ul_bzg_r2x_2hc}

Example header:

`authorization: Bearer Qda_UdoiYipb15Le11En8axEuN71FA6Vt_cw`

When you use an admin API key, you use different endpoints to access the admin APIs.

* For general Admin endpoints (`/a/Admin/...`) the endpoint to use is (`/api/Admin/...`).

  For example (retrieving a list of rules):
  * API call in Admin UI: `/a/Admin/v3/rules?page=0&size=100&sort=modified%2CDESC`
  * API call using Admin Keys: `/api/Admin/v3/rules?page=0&size=100&sort=modified%2CDESC`
  {#cpq-admin-api-keys__ul_asw_dfx_2hc}
* For managed table endpoints (`/a/managed_tables/...`) the endpoint to use when accessing with an API key is (`/api/managedTables/...`)

  For example (retrieving the schema of a managed table):
  * API call in Admin UI: `/a/managed_tables/v1/managedTables/{tableName}/metadata`
  * API call using Admin Keys: `/api/managedTables/v1/managedTables/{tableName}/metadata`
  {#cpq-admin-api-keys__ul_zff_2fx_2hc}
{#cpq-admin-api-keys__ul_jly_x2x_2hc}
**Zugehörige Konzepte**   

* [Admin APIs: Authentication using a Salesforce-connected app](https://servicenow-prod.fluidtopics.net/qVra4ZpNI2LwQtTRXT89Gg "We recommend that you use admin API keys to authenticate admin API calls. An older method is documented here.")  
**Zugehörige Informationen**   

* <https://logikio.atlassian.net/wiki/spaces/CS/pages/1614479620/Setting+up+a+Google+IdP+JWT+Token+for+Headless+Admin+API+Authentication>

