JDBC Driver for Marketo

Build 23.0.8839

Tokens

Create, delete, and query Tokens for a Marketo organization.

テーブル固有の情報

Select

Note: すべてのフィルター可能なカラムは、'=' 演算子で指定する必要があります。

特定のParentResourceType のトークンを取得します。

SELECT * FROM Tokens WHERE ParentResourceId = 1121 AND ParentResourceType = 'program'

Insert

新しいトークンを作成するには、ParentResourceId、ParentResourceType、Name、Type、Value フィールドを指定してください。

 
INSERT INTO Tokens (ParentResourceId, ParentResourceType, Name, Type, Value) VALUES (1111, 'program', 'testname', 'text', 'testvalue')

Delete

トークンを削除するには、ParentResourceId、ParentResourceType、Name、Type、Value フィールドを指定してください。

DELETE FROM Tokens WHERE ParentResourceId = 1 AND ParentResourceType = 'program' AND Name = 'testname' AND Type = 'text'

Columns

Name Type ReadOnly Filterable Description
ParentResourceId Integer True True

The Id of the Folder or Program.

ParentResourceType String True True

The type of the token. It could be either Folder or Program.

使用できる値は次のとおりです。folder, program

デフォルト値はfolderです。

Name String False True

The name of the Token.

Type String False True

The data type of the Token. The supported values are date, number, rich text, score, sfdc campaign and text

使用できる値は次のとおりです。date, number, rich text, score, sfdc campaign, text

Value String False True

The value of the Token.

ComputedURL String False

The Computed URL of the Token.

Copyright (c) 2024 CData Software, Inc. - All rights reserved.
Build 23.0.8839