# Scopes
source: https://developer.mastercard.com/open-finance-europe/documentation/unlicensed/aiia-data/connect/scopes/index.md

You need to connect your users through our platform by using our [Connect Flow](https://developer.mastercard.com/open-finance-europe/documentation/unlicensed/aiia-data/connect/connect-flow/index.md). In this section, we describe the scopes you can request and what functionality is enabled by them.

You can request one or more of the scopes listed below in the query parameter `scope` when using the [Connect Flow](https://developer.mastercard.com/open-finance-europe/documentation/unlicensed/aiia-data/connect/connect-flow/index.md).

|     **Scope**     |                **Functionality**                |                                                                                                                                       **Description**                                                                                                                                       |
|-------------------|-------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| accounts          | Accounts and transactions                       | Full access to account and transaction data.                                                                                                                                                                                                                                                |
| offline_access    | Persistent sharing of accounts and transactions | By default data is only accessible for 24 hours. Add this scope for persistent access to accounts and transaction data until end user revokes access.                                                                                                                                       |
| payments:inbound  | Receive payment                                 | Payments can be requested to be received on accounts shared with this scope. This scope relates to our payments product. For more information please consult our [Aiia Pay](https://developer.mastercard.com/open-finance-europe/documentation/unlicensed/aiia-pay/index.md) documentation. |
| payments:outbound | Send payment                                    | Payments can be made from the requested accounts shared with this scope. This scope relates to our payments product. For more information please consult our [Aiia Pay](https://developer.mastercard.com/open-finance-europe/documentation/unlicensed/aiia-pay/index.md) documentation.     |

You can set one or more scopes when requesting to connect an end user. For example, setting `accounts offline_access payments:outbound` will request the end user to accept sharing account and transaction data with you, as well as being able to send payments from your service.

```shell
curl -D- -G \
  https://api-sandbox.aiia.eu/v1/oauth/connect \
  -d client_id=<CLIENT_ID> \
  -d redirect_uri=<REDIRECT_URL> \
  -d scope="accounts offline_access payments:outbound" \
  -d response_type=code  
```

