Skip to main content

app_types

Creates, updates, deletes, gets or lists an app_types resource.

Overview

Nameapp_types
TypeResource
Idcloudflare.zero_trust.app_types

Fields

The following fields are returned by SELECT queries:

List application and application type mappings response.

NameDatatypeDescription
idintegerIdentify this application. Only one application per ID.
namestringSpecify the name of the application or application type. (example: Facebook)
application_type_idintegerIdentify the type of this application. Multiple applications can share the same type. Refers to the id of a returned application type.
created_atstring (date-time) (example: 2014-01-01T05:20:00.12345Z)
descriptionstringProvide a short summary of applications with this type. (example: Applications used to communicate or collaborate in a business setting.)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectaccount_idList all application and application type mappings.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
account_idstringThe Cloudflare account ID.

SELECT examples

List all application and application type mappings.

SELECT
id,
name,
application_type_id,
created_at,
description
FROM cloudflare.zero_trust.app_types
WHERE account_id = '{{ account_id }}' -- required
;