# Authorization Scopes

Scopes grants clients access to functionality reserved for special permissions. You can request one or more of the scopes listed below in the query parameter `scope` [when authenticating a client](/readme/headless/headless-api-authentication.md).

The following scopes are available:

| Scope                     | Functionality     | Description                                          |
| ------------------------- | ----------------- | ---------------------------------------------------- |
| transactions:custom:price | Custom Unit Price | Add or update a custom price or tax for a line item. |

Example:

```bash
curl -D- -G <base_url>/api/v1/oauth/connect \
    -d client_id=<CLIENT_ID> \
    -d redirect_uri=<REDIRECT_URL> \
    -d scope="transactions:custom:price" \
    -d response_type=code 
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://dev.ucommerce.net/readme/headless/headless-api-authentication/authorization-scopes.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
