import 'package:cloudflare_dart/api.dart';All URIs are relative to https://api.cloudflare.com/client/v4
| Method | HTTP request | Description |
|---|---|---|
| cloudforceOnePriorityDelete | DELETE /accounts/{account_id}/cloudforce-one/requests/priority/{priority_id} | Delete a Priority Intelligence Requirement |
| cloudforceOnePriorityGet | GET /accounts/{account_id}/cloudforce-one/requests/priority/{priority_id} | Get a Priority Intelligence Requirement |
| cloudforceOnePriorityList | POST /accounts/{account_id}/cloudforce-one/requests/priority | List Priority Intelligence Requirements |
| cloudforceOnePriorityNew | POST /accounts/{account_id}/cloudforce-one/requests/priority/new | Create a New Priority Intelligence Requirement |
| cloudforceOnePriorityQuota | GET /accounts/{account_id}/cloudforce-one/requests/priority/quota | Get Priority Intelligence Requirement Quota |
| cloudforceOnePriorityUpdate | PUT /accounts/{account_id}/cloudforce-one/requests/priority/{priority_id} | Update a Priority Intelligence Requirement |
CloudforceOneRequestsApiResponseCommon cloudforceOnePriorityDelete(accountId, priorityId)
Delete a Priority Intelligence Requirement
import 'package:cloudflare_dart/api.dart';
// TODO Configure API key authorization: api_key
//defaultApiClient.getAuthentication<ApiKeyAuth>('api_key').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('api_key').apiKeyPrefix = 'Bearer';
// TODO Configure API key authorization: api_email
//defaultApiClient.getAuthentication<ApiKeyAuth>('api_email').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('api_email').apiKeyPrefix = 'Bearer';
final api = CloudflareDart().getPriorityIntelligenceRequirementsPIRApi();
final String accountId = accountId_example; // String |
final String priorityId = priorityId_example; // String |
try {
final response = api.cloudforceOnePriorityDelete(accountId, priorityId);
print(response);
} catch on DioException (e) {
print('Exception when calling PriorityIntelligenceRequirementsPIRApi->cloudforceOnePriorityDelete: $e\n');
}| Name | Type | Description | Notes |
|---|---|---|---|
| accountId | String | ||
| priorityId | String |
CloudforceOneRequestsApiResponseCommon
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
CloudforceOnePriorityGet200Response cloudforceOnePriorityGet(accountId, priorityId)
Get a Priority Intelligence Requirement
import 'package:cloudflare_dart/api.dart';
// TODO Configure API key authorization: api_key
//defaultApiClient.getAuthentication<ApiKeyAuth>('api_key').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('api_key').apiKeyPrefix = 'Bearer';
// TODO Configure API key authorization: api_email
//defaultApiClient.getAuthentication<ApiKeyAuth>('api_email').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('api_email').apiKeyPrefix = 'Bearer';
final api = CloudflareDart().getPriorityIntelligenceRequirementsPIRApi();
final String accountId = accountId_example; // String |
final String priorityId = priorityId_example; // String |
try {
final response = api.cloudforceOnePriorityGet(accountId, priorityId);
print(response);
} catch on DioException (e) {
print('Exception when calling PriorityIntelligenceRequirementsPIRApi->cloudforceOnePriorityGet: $e\n');
}| Name | Type | Description | Notes |
|---|---|---|---|
| accountId | String | ||
| priorityId | String |
CloudforceOnePriorityGet200Response
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
CloudforceOnePriorityList200Response cloudforceOnePriorityList(accountId, cloudforceOneRequestsPriorityList)
List Priority Intelligence Requirements
import 'package:cloudflare_dart/api.dart';
// TODO Configure API key authorization: api_key
//defaultApiClient.getAuthentication<ApiKeyAuth>('api_key').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('api_key').apiKeyPrefix = 'Bearer';
// TODO Configure API key authorization: api_email
//defaultApiClient.getAuthentication<ApiKeyAuth>('api_email').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('api_email').apiKeyPrefix = 'Bearer';
final api = CloudflareDart().getPriorityIntelligenceRequirementsPIRApi();
final String accountId = accountId_example; // String |
final CloudforceOneRequestsPriorityList cloudforceOneRequestsPriorityList = ; // CloudforceOneRequestsPriorityList |
try {
final response = api.cloudforceOnePriorityList(accountId, cloudforceOneRequestsPriorityList);
print(response);
} catch on DioException (e) {
print('Exception when calling PriorityIntelligenceRequirementsPIRApi->cloudforceOnePriorityList: $e\n');
}| Name | Type | Description | Notes |
|---|---|---|---|
| accountId | String | ||
| cloudforceOneRequestsPriorityList | CloudforceOneRequestsPriorityList |
CloudforceOnePriorityList200Response
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
CloudforceOnePriorityNew200Response cloudforceOnePriorityNew(accountId, cloudforceOneRequestsPriorityEdit)
Create a New Priority Intelligence Requirement
import 'package:cloudflare_dart/api.dart';
// TODO Configure API key authorization: api_key
//defaultApiClient.getAuthentication<ApiKeyAuth>('api_key').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('api_key').apiKeyPrefix = 'Bearer';
// TODO Configure API key authorization: api_email
//defaultApiClient.getAuthentication<ApiKeyAuth>('api_email').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('api_email').apiKeyPrefix = 'Bearer';
final api = CloudflareDart().getPriorityIntelligenceRequirementsPIRApi();
final String accountId = accountId_example; // String |
final CloudforceOneRequestsPriorityEdit cloudforceOneRequestsPriorityEdit = ; // CloudforceOneRequestsPriorityEdit |
try {
final response = api.cloudforceOnePriorityNew(accountId, cloudforceOneRequestsPriorityEdit);
print(response);
} catch on DioException (e) {
print('Exception when calling PriorityIntelligenceRequirementsPIRApi->cloudforceOnePriorityNew: $e\n');
}| Name | Type | Description | Notes |
|---|---|---|---|
| accountId | String | ||
| cloudforceOneRequestsPriorityEdit | CloudforceOneRequestsPriorityEdit |
CloudforceOnePriorityNew200Response
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
CloudforceOnePriorityQuota200Response cloudforceOnePriorityQuota(accountId)
Get Priority Intelligence Requirement Quota
import 'package:cloudflare_dart/api.dart';
// TODO Configure API key authorization: api_key
//defaultApiClient.getAuthentication<ApiKeyAuth>('api_key').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('api_key').apiKeyPrefix = 'Bearer';
// TODO Configure API key authorization: api_email
//defaultApiClient.getAuthentication<ApiKeyAuth>('api_email').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('api_email').apiKeyPrefix = 'Bearer';
final api = CloudflareDart().getPriorityIntelligenceRequirementsPIRApi();
final String accountId = accountId_example; // String |
try {
final response = api.cloudforceOnePriorityQuota(accountId);
print(response);
} catch on DioException (e) {
print('Exception when calling PriorityIntelligenceRequirementsPIRApi->cloudforceOnePriorityQuota: $e\n');
}| Name | Type | Description | Notes |
|---|---|---|---|
| accountId | String |
CloudforceOnePriorityQuota200Response
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
CloudforceOnePriorityGet200Response cloudforceOnePriorityUpdate(accountId, priorityId, cloudforceOneRequestsPriorityEdit)
Update a Priority Intelligence Requirement
import 'package:cloudflare_dart/api.dart';
// TODO Configure API key authorization: api_key
//defaultApiClient.getAuthentication<ApiKeyAuth>('api_key').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('api_key').apiKeyPrefix = 'Bearer';
// TODO Configure API key authorization: api_email
//defaultApiClient.getAuthentication<ApiKeyAuth>('api_email').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('api_email').apiKeyPrefix = 'Bearer';
final api = CloudflareDart().getPriorityIntelligenceRequirementsPIRApi();
final String accountId = accountId_example; // String |
final String priorityId = priorityId_example; // String |
final CloudforceOneRequestsPriorityEdit cloudforceOneRequestsPriorityEdit = ; // CloudforceOneRequestsPriorityEdit |
try {
final response = api.cloudforceOnePriorityUpdate(accountId, priorityId, cloudforceOneRequestsPriorityEdit);
print(response);
} catch on DioException (e) {
print('Exception when calling PriorityIntelligenceRequirementsPIRApi->cloudforceOnePriorityUpdate: $e\n');
}| Name | Type | Description | Notes |
|---|---|---|---|
| accountId | String | ||
| priorityId | String | ||
| cloudforceOneRequestsPriorityEdit | CloudforceOneRequestsPriorityEdit |
CloudforceOnePriorityGet200Response
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]