使用Flow Service API為OneTrust Integration來源建立資料流
建立對象:
- 開發人員
下列教學課程會逐步引導您完成建立來源連線和資料流的步驟,以使用Flow Service API將歷史資料和排程同意資料從OneTrust Integration帶入Adobe Experience Platform。
先決條件
您必須先擷取存取權杖,才能將OneTrust Integration連線至Experience Platform。 如需尋找存取Token的詳細指示,請參閱OneTrust Integration OAuth 2指南。
存取權杖到期後不會自動重新整理,因為OneTrust不支援系統間重新整理權杖。 因此,在連線過期之前,必須確定您的存取權杖已在連線中更新。 存取權杖的最大可設定存留期為一年。 若要深入瞭解如何更新您的存取權杖,請參閱有關管理您的OAuth 2.0使用者端認證🔗的OneTrust 檔案。
使用Flow Service API連線OneTrust Integration至Experience Platform
下列教學課程將逐步引導您完成建立OneTrust Integration來源連線與建立資料流的步驟,以使用Flow Service API將OneTrust Integration資料帶入Experience Platform。
建立基礎連線
基本連線會保留來源與Experience Platform之間的資訊,包括來源的驗證認證、連線的目前狀態,以及唯一的基本連線ID。 基礎連線ID可讓您從來源內部探索及導覽檔案,並識別您要擷取的特定專案,包括其資料型別和格式的資訊。
若要建立基底連線ID,請在提供您的OneTrust Integration驗證認證作為要求內文的一部分時,對/connections
端點提出POST要求。
API格式
POST /connections
要求
下列要求會建立OneTrust Integration的基礎連線:
curl -X POST \
'https://platform.adobe.io/data/foundation/flowservice/connections' \
-H 'Authorization: Bearer {ACCESS_TOKEN}' \
-H 'x-api-key: {API_KEY}' \
-H 'x-gw-ims-org-id: {ORG_ID}' \
-H 'x-sandbox-name: {SANDBOX_NAME}' \
-H 'Content-Type: application/json' \
-d '{
"name": "ONETRUST base connection",
"description": "ONETRUST base connection to authenticate to Experience Platform",
"connectionSpec": {
"id": "cf16d886-c627-4872-9936-fb08d6cba8cc",
"version": "1.0"
},
"auth": {
"specName": "OAuth2 Refresh Code",
"params": {
"accessToken": "{ACCESS_TOKEN}"
}
}
}'
name
description
connectionSpec.id
auth.specName
auth.params.
auth.params.accessToken
回應
成功的回應會傳回新建立的基礎連線,包括其唯一的連線識別碼(id
)。 在下一步中探索來源的檔案結構和內容時,需要此ID。
{
"id": "622124ca-6d18-47f7-999c-66f599955309",
"etag": "\"2e026443-0000-0200-0000-621f1af80000\""
}
探索您的來源
使用您在上一步中產生的基本連線ID,您可以執行GET要求來探索檔案和目錄。
使用以下呼叫來尋找您要帶入Experience Platform的檔案路徑:
API格式
GET /connections/{BASE_CONNECTION_ID}/explore?objectType=rest&object={OBJECT}&fileType={FILE_TYPE}&preview={PREVIEW}
執行GET請求以探索來源的檔案結構和內容時,您必須包含下表列出的查詢引數:
{BASE_CONNECTION_ID}
objectType=rest
rest
。{OBJECT}
fileType=json
json
是唯一受支援的檔案型別。{PREVIEW}
要求
curl -X GET \
'https://platform.adobe.io/data/foundation/flowservice/connections/622124ca-6d18-47f7-999c-66f599955309/explore?objectType=rest&object=json&fileType=json&preview=true' \
-H 'Authorization: Bearer {ACCESS_TOKEN}' \
-H 'x-api-key: {API_KEY}' \
-H 'x-gw-ims-org-id: {ORG_ID}' \
-H 'x-sandbox-name: {SANDBOX_NAME}'
回應
成功的回應會傳回查詢檔案的結構。
{
"format": "hierarchical",
"schema": {
"type": "object",
"properties": {
"number": {
"type": "integer",
"minimum": -9007199254740992,
"maximum": 9007199254740991
},
"size": {
"type": "integer",
"minimum": -9007199254740992,
"maximum": 9007199254740991
},
"numberOfElements": {
"type": "integer",
"minimum": -9007199254740992,
"maximum": 9007199254740991
},
"last": {
"type": "boolean"
},
"pageable": {
"type": "object",
"properties": {
"paged": {
"type": "boolean"
},
"pageNumber": {
"type": "integer",
"minimum": -9007199254740992,
"maximum": 9007199254740991
},
"offset": {
"type": "integer",
"minimum": -9007199254740992,
"maximum": 9007199254740991
},
"tokenId": {
"type": "integer",
"minimum": -9007199254740992,
"maximum": 9007199254740991
},
"limit": {
"type": "integer",
"minimum": -9007199254740992,
"maximum": 9007199254740991
},
"pageSize": {
"type": "integer",
"minimum": -9007199254740992,
"maximum": 9007199254740991
},
"unpaged": {
"type": "boolean"
},
"sort": {
"type": "object",
"properties": {
"unsorted": {
"type": "boolean"
},
"sorted": {
"type": "boolean"
},
"empty": {
"type": "boolean"
}
}
}
}
},
"sort": {
"type": "object",
"properties": {
"unsorted": {
"type": "boolean"
},
"sorted": {
"type": "boolean"
},
"empty": {
"type": "boolean"
}
}
},
"content": {
"type": "object",
"properties": {
"LastUpdatedDate": {
"type": "string"
},
"Identifier": {
"type": "string"
},
"Language": {
"type": "string"
},
"TestDataSubject": {
"type": "boolean"
},
"CreatedDate": {
"type": "string"
},
"DataElements": {
"type": "array",
"items": {
"type": "object",
"properties": {}
}
},
"Id": {
"type": "string"
},
"Purposes": {
"type": "array",
"items": {
"type": "object",
"properties": {
"Status": {
"type": "string"
},
"LastTransactionDate": {
"type": "string"
},
"CustomPreferences": {
"type": "array",
"items": {
"type": "object",
"properties": {}
}
},
"LastUpdatedDate": {},
"ExpiryDate": {},
"Topics": {
"type": "array",
"items": {
"type": "object",
"properties": {
"IsConsented": {
"type": "boolean"
},
"Id": {
"type": "string"
},
"Name": {
"type": "string"
}
}
}
},
"TotalTransactionCount": {
"type": "integer",
"minimum": -9007199254740992,
"maximum": 9007199254740991
},
"LastReceiptId": {},
"ConsentDate": {
"type": "string"
},
"LastInteractionDate": {},
"Name": {
"type": "string"
},
"FirstTransactionDate": {
"type": "string"
},
"LastTransactionCollectionPointId": {
"type": "string"
},
"LastTransactionCollectionPointVersion": {
"type": "integer",
"minimum": -9007199254740992,
"maximum": 9007199254740991
},
"Version": {
"type": "integer",
"minimum": -9007199254740992,
"maximum": 9007199254740991
},
"attributes": {
"type": "object",
"properties": {}
},
"Id": {
"type": "string"
},
"PurposeNote": {},
"WithdrawalDate": {
"type": "string"
}
}
}
}
}
},
"first": {
"type": "boolean"
},
"empty": {
"type": "boolean"
}
}
},
"data": [
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "de1ab4d2-6ccf-42bd-b363-2d8cac60c88c",
"Language": "en-us",
"Identifier": "gkumar@onetrust.com",
"LastUpdatedDate": "2019-06-05T12:02:07Z",
"CreatedDate": "2018-05-02T03:14:28Z",
"Purposes": [
{
"Id": "9edf57bb-0449-4c15-98e4-8641522e5ff4",
"Name": "Purpose_UAT",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2018-05-02T03:14:27Z",
"LastTransactionDate": "2019-05-29T11:08:26Z",
"WithdrawalDate": "2019-05-29T11:05:30Z",
"ConsentDate": "2018-05-02T03:14:27Z",
"TotalTransactionCount": 5,
"Topics": [
{
"Id": "d6e3d675-3d6f-4f4e-a157-bd93829ee632",
"Name": "Topic_UAT",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "735c85c8-c69c-44bc-8bad-ec0e806090bd",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "814c073a-95f1-4fc9-8263-1ec62225c5e9",
"Name": "Multi Pur_UAT",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2018-05-02T03:17:33Z",
"LastTransactionDate": "2018-05-02T03:19:49Z",
"ConsentDate": "2018-05-02T03:17:33Z",
"TotalTransactionCount": 4,
"LastTransactionCollectionPointId": "9a5b7375-bc13-47e8-8a58-1ca7d9c06c8e",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "4d52dcc4-82bf-44bf-ac49-854eba6ff8f3",
"Name": "Eloqua_UAT",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2018-05-02T03:26:36Z",
"LastTransactionDate": "2019-03-07T03:23:25Z",
"ConsentDate": "2018-05-02T03:26:36Z",
"TotalTransactionCount": 3,
"Topics": [
{
"Id": "690ad782-6280-4ea4-b62a-1514c39fc838",
"Name": "Eloqua_topic",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "f8886377-e4b1-45e4-b1c0-d7dacb744db8",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "723300e3-96cb-4da4-abdd-4913c05be215",
"Name": "Purpose 1",
"Version": 2,
"Status": "EXPIRED",
"FirstTransactionDate": "2019-02-27T06:29:48Z",
"LastTransactionDate": "2019-02-28T12:00:45Z",
"ConsentDate": "2019-02-27T06:29:48Z",
"ExpiryDate": "2019-02-28T12:00:45Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "3dbfb978-10f9-44a9-9669-d699674edd9d",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "4a5e6278-17f1-4283-beee-29f81cde2bd0",
"Name": "kbpurpose1",
"Version": 1,
"Status": "NO_CONSENT",
"FirstTransactionDate": "2019-03-07T03:21:58Z",
"LastTransactionDate": "2019-05-29T03:56:37Z",
"TotalTransactionCount": 6,
"LastTransactionCollectionPointId": "cea42a12-5de4-421a-b429-092e8d523948",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "a36f98d0-c662-4f61-a2a1-8bdab69e3c3a",
"Name": "Pur 1",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-03-07T03:23:25Z",
"LastTransactionDate": "2019-03-07T03:23:27Z",
"ConsentDate": "2019-03-07T03:23:25Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "f8886377-e4b1-45e4-b1c0-d7dacb744db8",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "41ebdf32-068b-4239-89ac-42e20262c5a9",
"Name": "Send Notifications about Changes to Preferences",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-03-07T03:24:11Z",
"LastTransactionDate": "2019-03-07T03:27:29Z",
"ConsentDate": "2019-03-07T03:24:11Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "c29a99a9-de4d-4367-973b-95b0217d0640",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "759d8b24-e4c0-4107-86e2-3a408db13e6b",
"Name": "GJ Purpose 07",
"Version": 2,
"Status": "WITHDRAWN",
"FirstTransactionDate": "2019-03-07T03:27:29Z",
"LastTransactionDate": "2019-05-29T11:09:03Z",
"WithdrawalDate": "2019-05-29T11:09:03Z",
"ConsentDate": "2019-03-07T03:27:29Z",
"TotalTransactionCount": 18,
"LastTransactionCollectionPointId": "cea42a12-5de4-421a-b429-092e8d523948",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "a57ee9da-b494-49e2-b562-6dfa31f190df",
"Name": "kbpurpose2",
"Version": 1,
"Status": "WITHDRAWN",
"FirstTransactionDate": "2019-03-28T03:23:44Z",
"LastTransactionDate": "2019-03-28T03:24:29Z",
"WithdrawalDate": "2019-03-28T03:24:29Z",
"ConsentDate": "2019-03-28T03:23:44Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "c29a99a9-de4d-4367-973b-95b0217d0640",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "a1ccd810-94a0-4b58-946b-6705eae15c5b",
"Name": "Purpose01 v2",
"Version": 2,
"Status": "EXPIRED",
"FirstTransactionDate": "2019-05-29T04:05:42Z",
"LastTransactionDate": "2019-06-05T12:02:06Z",
"WithdrawalDate": "2019-05-29T11:09:12Z",
"ConsentDate": "2019-05-29T04:05:42Z",
"ExpiryDate": "2019-06-05T12:02:06Z",
"TotalTransactionCount": 8,
"Topics": [
{
"Id": "af7bf604-2058-4089-985c-c84083e3e3e3",
"Name": "New_Topic",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "735c85c8-c69c-44bc-8bad-ec0e806090bd",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "a313353a-e13b-4554-be08-22cf4a78a31c",
"Name": "Purpose_1804 v2",
"Version": 2,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-05-29T04:05:42Z",
"LastTransactionDate": "2019-05-29T11:09:30Z",
"WithdrawalDate": "2019-05-29T11:05:30Z",
"ConsentDate": "2019-05-29T04:05:42Z",
"TotalTransactionCount": 4,
"CustomPreferences": [
{
"Id": "4935d35a-7216-480d-9da9-1aef0e078b89",
"Name": "Custom_S",
"Options": [
{
"Id": "8acc2f9f-37f8-4ace-a513-fae6b7dd0aa9",
"Name": "Option2",
"IsConsented": true
}
]
}
],
"LastTransactionCollectionPointId": "735c85c8-c69c-44bc-8bad-ec0e806090bd",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
}
]
}
建立來源連線
您可以對Flow Service API發出POST要求,以建立來源連線。 來源連線由連線ID、來源資料檔案的路徑以及連線規格ID組成。
API格式
POST /sourceConnections
要求
下列要求會建立OneTrust Integration的來源連線:
curl -X POST \
'https://platform.adobe.io/data/foundation/flowservice/sourceConnections' \
-H 'Authorization: Bearer {ACCESS_TOKEN}' \
-H 'x-api-key: {API_KEY}' \
-H 'x-gw-ims-org-id: {ORG_ID}' \
-H 'x-sandbox-name: {SANDBOX_NAME}' \
-H 'Content-Type: application/json' \
-d '{
"name": "ONETRUST Source Connection",
"description": "ONETRUST Source Connection",
"baseConnectionId": "622124ca-6d18-47f7-999c-66f599955309",
"connectionSpec": {
"id": "cf16d886-c627-4872-9936-fb08d6cba8cc",
"version": "1.0"
},
"data": {
"format": "json"
},
"params": {}
}'
name
description
baseConnectionId
connectionSpec.id
data.format
json
。回應
成功的回應會傳回新建立的來源連線的唯一識別碼(id
)。 在後續步驟中需要此ID才能建立資料流。
{
"id": "eb5833d3-230d-4700-80cc-bda396e7af8a",
"etag": "\"da04c07f-0000-0200-0000-621f1afc0000\""
}
建立目標XDM結構描述
為了在Experience Platform中使用來源資料,必須建立目標結構描述,以根據您的需求建構來源資料。 然後使用目標結構描述來建立包含來源資料的Experience Platform資料集。
可透過對結構描述登入API執行POST要求來建立目標XDM結構描述。
如需有關如何建立目標XDM結構描述的詳細步驟,請參閱有關使用API 建立結構描述的教學課程。
建立目標資料集
可透過對目錄服務API執行POST要求,在承載中提供目標結構描述的ID,來建立目標資料集。
如需有關如何建立目標資料集的詳細步驟,請參閱有關使用API建立資料集的教學課程。
建立目標連線
目標連線代表與要儲存所擷取資料的目的地之間的連線。 若要建立目標連線,您必須提供對應至Data Lake的固定連線規格識別碼。 此ID為: c604ff05-7f1a-43c0-8e18-33bf874cb11c
。
您現在擁有目標結構描述、目標資料集和與Data Lake的連線規格ID的唯一識別碼。 使用這些識別碼,您可以使用Flow Service API建立目標連線,以指定將包含傳入來源資料的資料集。
API格式
POST /targetConnections
要求
下列要求會建立OneTrust Integration的目標連線:
curl -X POST \
'https://platform.adobe.io/data/foundation/flowservice/targetConnections' \
-H 'Authorization: Bearer {ACCESS_TOKEN}' \
-H 'x-api-key: {API_KEY}' \
-H 'x-gw-ims-org-id: {ORG_ID}' \
-H 'x-sandbox-name: {SANDBOX_NAME}' \
-H 'Content-Type: application/json' \
-d '{
"name": "ONETRUST Target Connection",
"description": "ONETRUST Target Connection",
"connectionSpec": {
"id": "c604ff05-7f1a-43c0-8e18-33bf874cb11c",
"version": "1.0"
},
"data": {
"format": "json"
},
"params": {
"dataSetId": "61f6ca3f33978c19486bb463"
}
}'
name
description
connectionSpec.id
c604ff05-7f1a-43c0-8e18-33bf874cb11c
。data.format
params.dataSetId
回應
成功的回應會傳回新目標連線的唯一識別碼(id
)。 此ID在後續步驟中是必要的。
{
"id": "495f761f-310a-4a7b-ae78-5b1152d74b38",
"etag": "\"410a7b0c-0000-0200-0000-621f1afd0000\""
}
POST /conversion/mappingSets
要求
curl -X POST \
'https://platform.adobe.io/data/foundation/conversion/mappingSets' \
-H 'Authorization: Bearer {ACCESS_TOKEN}' \
-H 'x-api-key: {API_KEY}' \
-H 'x-gw-ims-org-id: {ORG_ID}' \
-H 'x-sandbox-name: {SANDBOX_NAME}' \
-H 'Content-Type: application/json' \
-d '{
"version": 0,
"xdmSchema": "https://ns.adobe.com/{TENANT_ID}/schemas/cfc8cee182e546c1fb35071185524b465e06bf1acb74f30d",
"xdmVersion": "1.0",
"id": null,
"mappings": [{
"sourceType": "ATTRIBUTE",
"source": "content.Identifier",
"destination": "_id",
"name": "id",
"description": "Identifier field"
},
{
"sourceType": "ATTRIBUTE",
"source": "content.Identifier",
"destination": "_exchangesandboxbravo.Identifier"
},
{
"sourceType": "ATTRIBUTE",
"source": "content.Language",
"destination": "_exchangesandboxbravo.Language",
"description": "Language field"
},
{
"sourceType": "ATTRIBUTE",
"source": "content.CreatedDate",
"destination": "_exchangesandboxbravo.CreatedDate",
"description": "Created Date field"
},
{
"sourceType": "ATTRIBUTE",
"source": "content.LastUpdatedDate",
"destination": "_exchangesandboxbravo.LastUpdatedDate",
"description": "Created Date field"
},
{
"sourceType": "ATTRIBUTE",
"source": "content.DataElements",
"destination": "_exchangesandboxbravo.DataElements"
},
{
"sourceType": "ATTRIBUTE",
"source": "content.Purposes",
"destination": "_exchangesandboxbravo.Purposes"
}
]
}'
xdmSchema
mappings.destinationXdmPath
mappings.sourceAttribute
回應
成功的回應會傳回新建立的對應詳細資料,包括其唯一識別碼(id
)。 在後續步驟中需要此值,才能建立資料流。
{
"id": "a87f130e82f04d5188da01f087805c4b",
"version": 0,
"createdDate": 1646205694395,
"modifiedDate": 1646205694395,
"createdBy": "{CREATED_BY}",
"modifiedBy": "{MODIFIED_BY}"
}
建立流程
將資料從OneTrust Integration引進Experience Platform的最後一步是建立資料流。 到現在為止,您已準備下列必要值:
資料流負責從來源排程及收集資料。 您可以執行POST要求,同時在裝載中提供先前提及的值來建立資料流。
若要排程內嵌,您必須先將開始時間值設為以秒為單位的epoch時間。 然後,您必須將頻率值設定為下列五個選項之一: once
、minute
、hour
、day
或week
。 間隔值會指定兩個連續擷取之間的期間,不過,建立一次性擷取不需要設定間隔。 對於所有其他頻率,間隔值必須設定為等於或大於15
。
API格式
POST /flows
要求
curl -X POST \
'https://platform.adobe.io/data/foundation/flowservice/flows' \
-H 'x-api-key: {API_KEY}' \
-H 'x-gw-ims-org-id: {ORG_ID}' \
-H 'x-sandbox-name: {SANDBOX_NAME}' \
-H 'Content-Type: application/json' \
-d '{
"name": "ONETRUST dataflow",
"description": "ONETRUST dataflow",
"flowSpec": {
"id": "6499120c-0b15-42dc-936e-847ea3c24d72",
"version": "1.0"
},
"sourceConnectionIds": [
"eb5833d3-230d-4700-80cc-bda396e7af8a"
],
"targetConnectionIds": [
"495f761f-310a-4a7b-ae78-5b1152d74b38"
],
"transformations": [
{
"name": "Mapping",
"params": {
"mappingId": "a87f130e82f04d5188da01f087805c4b",
"mappingVersion": 0
}
}
],
"scheduleParams": {
"startTime": "1625040887",
"frequency": "minute",
"interval": 15
}
}'
name
description
flowSpec.id
6499120c-0b15-42dc-936e-847ea3c24d72
。flowSpec.version
1.0
。sourceConnectionIds
targetConnectionIds
transformations
transformations.name
transformations.params.mappingId
transformations.params.mappingVersion
0
。scheduleParams.startTime
scheduleParams.frequency
once
、minute
、hour
、day
或week
。scheduleParams.interval
once
時不需要間隔,其他頻率值應該大於或等於15
。回應
成功的回應會傳回新建立的資料流識別碼(id
)。 您可以使用此ID來監視、更新或刪除資料流。
{
"id": "70045189-42f0-493d-9b9e-be1045a9f4fa",
"etag": "\"1601e900-0000-0200-0000-621f1b080000\""
}
附錄
下節提供監視、更新和刪除資料流的步驟相關資訊。
監視資料流
建立資料流後,您可以監視透過該資料流擷取的資料,以檢視有關資料流執行、完成狀態和錯誤的資訊。 如需完整的API範例,請閱讀使用API監視您的來源資料流的指南。
更新您的資料流
提供資料流的ID時,透過向Flow Service API的/flows
端點發出PATCH要求,更新資料流的詳細資訊,例如其名稱和說明,以及其執行排程和相關聯的對應集。 發出PATCH請求時,您必須在If-Match
標頭中提供資料流的唯一etag
。 如需完整的API範例,請閱讀使用API更新來源資料流的指南。
更新您的帳戶
在提供您的基本連線ID作為查詢引數的同時,透過對Flow Service API執行PATCH請求來更新來源帳戶的名稱、說明和認證。 發出PATCH請求時,您必須在If-Match
標頭中提供來源帳戶的唯一etag
。 如需完整的API範例,請閱讀使用API更新來源帳戶的指南。
刪除您的資料流
提供您要刪除之資料流的ID做為查詢引數的一部分,同時對Flow Service API執行DELETE要求,以刪除您的資料流。 如需完整的API範例,請閱讀使用API刪除資料流的指南。
刪除您的帳戶
在提供您要刪除之帳戶的基本連線ID時,對Flow Service API執行DELETE要求,以刪除您的帳戶。 如需完整的API範例,請閱讀使用API刪除來源帳戶的指南。