# 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](https://dev.ucommerce.net/readme/headless/headless-api-authentication).

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 
```
