# Pricelist API **Base URL**: https://dev-cloud.acronis.com/api/price_sync/v1 ## Endpoints ### GET /effective_price_lists Returns a tenant's price lists for one or more months. #### Security The endpoint supports the following authorization methods: `OAuth 2.0` For OAuth2 authorization method, one of the following scopes is required by the endpoint: * `urn:acronis.com::service_plans_manager::price_list_reader` #### Request parameters ##### Headers | Name | Description | |------|-------------| | `Authorization` | (Required) JWT authorization header

**Type**: String
**Pattern**: `^Bearer (.*)$` | ##### Query parameters | Name | Description | |------|-------------| | `tenant_id` | (Required) Tenant UUID to fetch prices for.

**Type**: String
**Pattern**: `^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$` | | `months` | (Required) Array of months (format YYYY-MM) for which to retrieve price lists.

**Type**: String | #### Responses | Code | Description | |------|-------------| | `200` | Price lists have been successfully retrieved. | | `500` | Something unexpected has gone wrong on the server. | | `400` | The request cannot be processed since it's malformed or contains invalid data. | | `401` | Method required an authenticated user. | | `403` | Current user has no permissions for this URL/method. |